https://github.com/dbfx/php-disposable-domains
A list of disposable email domains gathered from various sources. E.g. mailinator
https://github.com/dbfx/php-disposable-domains
email-validation email-verification php spam spam-protection
Last synced: 5 months ago
JSON representation
A list of disposable email domains gathered from various sources. E.g. mailinator
- Host: GitHub
- URL: https://github.com/dbfx/php-disposable-domains
- Owner: dbfx
- License: mit
- Created: 2016-07-06T13:22:37.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T13:25:13.000Z (about 7 years ago)
- Last Synced: 2024-04-05T09:21:29.993Z (about 2 years ago)
- Topics: email-validation, email-verification, php, spam, spam-protection
- Language: PHP
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# disposable-email-domains
[](https://codeclimate.com/github/dbfx/php-disposable-domains) [](https://codeclimate.com/github/dbfx/php-disposable-domains)
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();
```