This package provides a simple command to send test emails, allowing you to verify your mail setup in a Laravel application. It supports both immediate sending and queueing of test emails.
You can install the package via composer:
composer require esign/laravel-test-mailYou can use the mail:test command to send a test mail to a specified recipient:
php artisan mail:test [email protected]If you want to queue the test mail instead of sending it immediately, you can use the --queue option:
php artisan mail:test [email protected] --queuecomposer testThe MIT License (MIT). Please see License File for more information.