dbfx/php-disposable-domains

Quick list of disposable email domains for use with PHP apps.

dev-master / 1.0.x-dev 2019-04-30 13:25 UTC

This package is auto-updated.

Last update: 2024-04-29 02:51:10 UTC


README

Code Climate Issue Count

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();