Deny list (blacklist) checker will test a mail server IP address against over 50 DNS
based email blacklists. (Commonly called Realtime blacklist, DNSBL or RBL).
If your mail server has been blacklisted, some email you send may not be delivered.
Email blacklists are a common way of reducing spam.
You can install the package via composer:
composer require palpalani/laravel-dns-deny-list-check
You can publish the config file with:
php artisan vendor:publish --provider="palPalani\DnsDenyListCheck\DnsDenyListCheckServiceProvider" --tag="laravel-dns-deny-list-check-config"
This is the contents of the published config file:
return [
];
$check = new palPalani\DnsDenyListCheck\DnsDenyListCheck();
echo $check->check('127.0.0.1');
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
We use SemVer for versioning. For the versions available, see the tags on this repository.
The MIT License (MIT). Please see License File for more information.