istempmail php
1.0.0
PHP -Bibliothek zur Überprüfung der verfügbaren E -Mail -Adresse mithilfe der API von ASTempmail
Um ein kostenloses API -Token zu erhalten, registrieren Sie sich bei Istempmail und kopieren Sie dort Ihr API -Token.
<?php
include('istempmail.php');
$isTempMail = new IsTempMail('YOUR_API_TOKEN');
try {
if($isTempMail->isDea('[email protected]')) {
echo 'Disposable email address detected.';
}
} catch (Exception $exception) {
echo $exception->getMessage();
}