This is my package mailspfchecker-health-check
lloricode/mailspfchecker-health-check is a Laravel package for this is my package mailspfchecker-health-check.
It currently has 2 GitHub stars and 307 downloads on Packagist (latest version v1.0.0).
Install it with composer require lloricode/mailspfchecker-health-check.
Discover more Laravel packages by lloricode
or browse all Laravel packages to compare alternatives.
Last updated
This package contains a Laravel Health check if your application can send e-mail in name of a given address. Under the hood, it uses Mail spf checker.
You can install the package via composer:
composer require lloricode/mailspfchecker-health-check
// typically, in a service provider
use Spatie\Health\Facades\Health;
use Lloricode\MailspfcheckerHealthCheck\MailspfcheckerCheck;
Health::checks([
MailspfcheckerCheck::new(),
MailspfcheckerCheck::new()
->setEmailOrDomain('[email protected]'),
MailspfcheckerCheck::new()
->setEmailOrDomain('[email protected]')
->setUserServer('smtp.mandrill.com'),
]);
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.
The MIT License (MIT). Please see License File for more information.