Record and view all sent emails
Watch a video walkthrough
You can install the package via composer:
composer require dcblogdev/laravel-sent-emails
You can publish the migration with:
php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="migrations"
After the migration has been published you can the tables by running the migration:
php artisan migrate
You can publish the config with:
php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="config"
After the config has been published you can change the route path for sentemails from /sentemails to anything you like such as /admin/sentemails:
'routepath' => 'sentemails'
You can publish the view with:
php artisan vendor:publish --provider="Dcblogdev\LaravelSentEmails\SentEmailsServiceProvider" --tag="views"
The views will be published to resources/views/vendor/sentemails
You can change the views to match your theme if desired.
As soon as an email is sent it will be added to a database table and will be viewable in /sentemails.
Note the you have to be logged in to be able to see sentemails, if you are not logged in when you attempt to see sentemails you will be redirected to a login route.