An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# disposable-email-domains
[![Code Climate](https://codeclimate.com/github/dbfx/php-disposable-domains/badges/gpa.svg)](https://codeclimate.com/github/dbfx/php-disposable-domains) [![Issue Count](https://codeclimate.com/github/dbfx/php-disposable-domains/badges/issue_count.svg)](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();
```