This package include a new mailbase driver which will catch all the sent emails and save it to the database.
It then exposes a route /mailbase which you can visit to preview all the mails.
To install run the following command in your terminal:
composer require tkeer/mailbase --devThen run the migration
php artisan migrate
Finally, change MAIL_MAILER to mailbase in your .env file:
MAIL_MAILER=mailbase
composer require tkeer/mailbase ^0.4 --devphp artisan migrate
change MAIL_DRIVER to mailbase in your .env file:
You can run following command to test mailbase driver by sending a dummy email.
php artisan mailbase:test
If you want to clear any of the saved emails that are in the database, use the following command:
php artisan mailbase:clear