lloricode / mailspfchecker-health-check
This is my package mailspfchecker-health-check
v1.0.0
2022-09-05 06:35 UTC
Requires
- php: ^8.0
- dietercoopman/mailspfchecker: ^1.0.3
- illuminate/contracts: ^8.83.23|^9.27
- spatie/laravel-health: ^1.14.2
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- laravel/pint: ^1.1.2
- nunomaduro/collision: ^5.11|^6.0
- nunomaduro/larastan: ^1.0.3|^2.0.1
- orchestra/testbench: ^6.25|^7.7
- pestphp/pest: ^1.22.1
- pestphp/pest-plugin-laravel: ^1.2
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.1.1
- phpunit/phpunit: ^9.5.24
- spatie/laravel-ray: ^1.30
- dev-main
- v1.0.0
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-dependabot/github_actions/stefanzweifel/git-auto-commit-action-5
- dev-dependabot/github_actions/actions/checkout-4
- dev-dependabot/github_actions/aglipanci/laravel-pint-action-2.3.0
- dev-dependabot/github_actions/ramsey/composer-install-2
This package is auto-updated.
Last update: 2024-11-09 11:06:47 UTC
README
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.
Installation
You can install the package via composer:
composer require lloricode/mailspfchecker-health-check
Usage
// typically, in a service provider use Spatie\Health\Facades\Health; use Lloricode\MailspfcheckerHealthCheck\MailspfcheckerCheck; Health::checks([ MailspfcheckerCheck::new(), MailspfcheckerCheck::new() ->setEmailOrDomain('hello@example.com'), MailspfcheckerCheck::new() ->setEmailOrDomain('hello@example.com') ->setUserServer('smtp.mandrill.com'), ]);
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.