PHP code example of quickemailverification / quickemailverification

1. Go to this page and download the library: Download quickemailverification/quickemailverification 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/ */

    

quickemailverification / quickemailverification example snippets




// This file is generated by Composer
nt('Your_API_Key_Here');
$quickemailverification  = $client->quickemailverification();

try {
// PRODUCTION MODE
  $response = $quickemailverification->verify("[email protected]");

// SANDBOX MODE
// $response = $quickemailverification->sandbox("[email protected]");
}
catch (Exception $e) {
  echo "Code: " . $e->getCode() . " Message: " . $e->getMessage();
}
bash
$ php composer.phar update