istempmail php
1.0.0
Bibliothèque PHP pour vérifier l'adresse e-mail jetable à l'aide de l'API Istempmail
Pour obtenir un jeton API gratuit, inscrivez-vous sur Istempmail et copiez votre jeton API là-bas.
<?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();
}