dbfx / php-disposable-domains
Quick list of disposable email domains for use with PHP apps.
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.5.0
This package is auto-updated.
Last update: 2024-10-29 04:04:31 UTC
README
A PHP class to check disposable email domains gathered from various sources.
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();