coodde / mail-checker
Flexible PHP package for complex mail validation
Fund package maintenance!
Buy Me A Coffee
coodde
Requires
- php: >8.0.0
Requires (Dev)
- laravel/pint: ^1.18.1
- pestphp/pest: ^2.0
- pestphp/pest-plugin-type-coverage: ^2.0
- phpstan/phpstan: ^1.12.7
- rector/rector: ^1.2.8
This package is auto-updated.
Last update: 2024-12-24 00:21:21 UTC
README
PHP Mail Checker
This package provides simple checker for emails, to validate mail providers.
Report Bug
·
Request Feature
Table of Contents
About The Project
Flexible and simple library for checking email addresses. Usual framework validators are usually checking email correctness, but this library is implementing other kind of validation.
It can check is mail:
- registered in mail provider from forbidden country;
- registered in forbidden domain (all possible levels);
- used for spam or scam (dangerous), temporary, had suspicious behaviour, is registered on paid or public (like gmail) mail provider.
Of course, you can always propose new domains to add into listed in the "data" directory.
Key feautures:
- fast search - binary search in the pre-sorted dictionaries (in comparison with other popular libraries with linear search)
- flexible configurations - not only one strict list
- low memory usage - disctionaries are not loaded fully into memory (as in other popular libraries)
- frequent updates
- easy collaboration
- large disctionary- 60k+ of domains (not only public email providers) in the dictionary
Built With
This library supports several languages and frameworks.
- PHP
- JS / TS
- Ruby
- Ruby on Rails (planned)
- Perl
- Vanilla (planned)
Getting Started
Simple steps to start use the library.
Requires
Check that library works on your PHP version:
- PHP 8.0+
- Composer
Installation
Below is an simple list of step to install library.
- Open your project directory in the terminal
- Install package
composer require coodde/mail-checker
- Check your
composer.json
file
Usage
This table will help to understand possible usage of library and all default values:
Here you will find different cases of usage.
Checking that mail address registered in Russian mail provider:
use Coodde\MailChecker\MailChecker; use Coodde\MailChecker\Regions; use Coodde\MailChecker\Exceptions\MailCheckException; use Coodde\MailChecker\Exceptions\RegionMailCheckException; $mailChecker = new MailChecker([], [], [Regions::RUSSIA]); // This will return boolean value $result = $mailChecker->allowed('test@gmail.com'); // or $result = $mailChecker->forbidden('test@mail.ru'); // Also you can catch exception try { $mailChecker->validate('test@mail.ru'); } catch (RegionMailCheckException $e) { echo "Forbidden region"; } catch (MailCheckException $e) { echo "Wrong mail format (not validated before checking)"; } catch (\Exception $e) { echo "Unhandled exception"; }
Checking that mail address registered in "ru" or "mail.by" domains:
use Coodde\MailChecker\MailChecker; use Coodde\MailChecker\Regions; use Coodde\MailChecker\Exceptions\MailCheckException; use Coodde\MailChecker\Exceptions\DomainMailCheckException; use Coodde\MailChecker\Exceptions\ListingMailCheckException; use Coodde\MailChecker\Exceptions\RegionMailCheckException; $mailChecker = new MailChecker([], ['ru', 'mail.by'], []); // This will return boolean value $result = $mailChecker->allowed('test@gmail.com'); // or $result = $mailChecker->forbidden('test@test.ru'); $result = $mailChecker->forbidden('test@mail.by'); // Also you can catch exception try { $mailChecker->validate('test@mail.ru'); } catch (DomainMailCheckException $e) { echo "Forbidden domain"; } catch (MailCheckException $e) { echo "Wrong mail format (not validated before checking)"; } catch (\Exception $e) { echo "Unhandled exception"; }
Checking that mail address is placed in dangerous or suspicious lists:
use Coodde\MailChecker\MailChecker; use Coodde\MailChecker\Regions; use Coodde\MailChecker\Exceptions\MailCheckException; use Coodde\MailChecker\Exceptions\ListingMailCheckException; $mailChecker = new MailChecker([MailChecker::CATEGORY_DANGEROUS, MailChecker::CATEGORY_SUSPICIOUS], [], []); // This will return boolean value $result = $mailChecker->allowed('test@gmail.com'); // or $result = $mailChecker->forbidden('test@gmail.ru'); // Also you can catch exception try { $mailChecker->validate('test@gmail.ru'); } catch (ListingMailCheckException $e) { echo "Dangerous mail provider"; } catch (MailCheckException $e) { echo "Wrong mail format (not validated before checking)"; } catch (\Exception $e) { echo "Unhandled exception"; }
Alternative way to configure restrictions:
$mailChecker = new MailChecker(); // Forbid countries $mailChecker->forbidRegions([Regions::RUSSIA]); // Forbid categories $mailChecker->forbidCategories([ MailChecker::CATEGORY_PAID, MailChecker::CATEGORY_TEMPORARY, ]); // Forbid domains $mailChecker->forbidDomains(['mail.ru']);
Of course you can combine restrictioned domains, countries, and categories
Roadmap
- Checking by countries
- Checking by domains
- Prepared lists
- Paid - mail providers with non-free subscription
- Dangerous - usually spaming servers / domains
- Public - popular free services like gmail, outlook, etc
- Temporary - services for mails which will be removed soon after creation
- Checking by prepaired lists
- From files - it uses binary search without file content buffering
- From cache - cache files with lists compiled into php file
- From memory - storing lists in memcache
- From database - by using PDO library+
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
✅ Run refactors using Rector
composer refacto
⚗️ Run static analysis using PHPStan:
composer test:types
✅ Run unit tests using PEST
composer test:unit
🚀 Run the entire test suite:
composer test
Top contributors:
License
Distributed under the MIT License. See LICENSE.txt
for more information.
Contact
Svyatoslav Ryzhok - info@coodde.com
Platform Link: https://coodde.com