
I made a free email validation SDK for PHP
I built this for signup and contact forms that get mistyped or disposable email addresses.
It checks the format, catches common domain typos, detects disposable providers, and verifies that the domain can receive email.
composer require trueform/trueform
$result = (new Trueform\Client())
->validations
->create('user@example.com');
$result->isDeliverable();
$result->isDisposable();
It also includes PSR-18 support and Laravel validation rules. No API key required.
- github: https://github.com/True-Form-Cloud/trueform-php-sdk
- packagist: https://packagist.org/packages/trueform/trueform
I also created a guide on how to integrate it in your app: https://trueform.cloud/docs/php/