PHP code example of bcismariu / emailoversight-php
1. Go to this page and download the library: Download bcismariu/emailoversight-php 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/ */
bcismariu / emailoversight-php example snippets
use Bcismariu\EmailOversight\EmailOversight;
$validator = new EmailOversight('YOUR_API_KEY');
$result = $validator->emailValidation('[email protected]', 'your_list_id');
$validator = new EmailOversight([
'apitoken' => 'YOUR_API_KEY',
'listid' => 'your_list_id'
]);
$result1 = $validator->emailValidation('[email protected]');
$result2 = $validator->emailValidation('[email protected]');
json
{
"cismariu/emailoversight-php": "0.*"
}
}