project php-disposable-domains
Quick list of disposable email domains for use with PHP apps.
dbfx/php-disposable-domains
Quick list of disposable email domains for use with PHP apps.
- Monday, February 13, 2017
- by dbfx
- Repository
- 1 Watchers
- 1 Stars
- 6 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
disposable-email-domains
, (*1)
A PHP class to check disposable email domains gathered from various sources., (*2)
Usage
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();