PHP code example of rizwan_47 / email-address-verifier
1. Go to this page and download the library: Download rizwan_47/email-address-verifier library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rizwan_47 / email-address-verifier example snippets
use rizwan_47\EmailVerifier\EmailVerifier;
EmailVerifier($email);
$response = $verifier->verify();
echo "<pre>";
print_r($response);
echo "</pre>";