istempmail php
1.0.0
PHP庫使用ISTEMPMAIL API檢查一次性電子郵件地址
要獲取免費的API令牌,請在Istempmail註冊,然後在此處複製API令牌。
<?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();
}