PHP

PHP Installation

You can contribute to the package by visiting the GitHub repository (opens in a new tab).

You can install the package via composer:

composer require usevalid-email/php-sdk

Usage

Initialization

use UseValidEmail\Sdk;
 
$token = 'your-access-token';
$sdk = new Sdk($token);

Validate Email

try {
    $email = 'example@example.com';
    $response = $sdk->emailValidator->validate($email);
    print_r($response->toArray());
} catch (Exception $e) {
    // Handle exception
}

Using Helper Function

try {
    $email = 'example@example.com';
    $response = validateEmail($email);
    print_r($response->toArray());
} catch (Exception $e) {
    // Handle exception
}