A PHP class to check disposable email domains gathered from various sources.
use DisposableEmail\DomainList\DomainList;
$list = new DomainList;
// Return true/false for a domain you want to check
$list->search("mailinator.com");
// Get the entire list as an array
$fullList = $list->load();