1. Go to this page and download the library: Download emailsherlock/client 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/ */
emailsherlock / client example snippets
use Emailsherlock\Client;
// reads the key from the environment, never hard-code it
$es = new Client(getenv('ES_KEY'));
$result = $es->verify->single(['email' => '[email protected]']);
echo $result->result; // 'valid'
echo $result->score; // 0.95