Laravel Database Log Emails
A simple database logger for all outgoing emails sent by Laravel application., (*1)
You can support me to this project and make some donation., (*2)
Installation
Laravel Database Log Emails can be installed via composer by requiring the stojankukrika/laravel-database-log-emails
package in your project's composer.json
., (*3)
{
"require": {
"stojankukrika/laravel-database-log-emails": "*"
}
}
Next add the service provider and the alias to app/config/app
., (*4)
'providers' => [
// ...
stojankukrika\LaravelDatabaseLogEmails\LaravelDatabaseLogEmailsServiceProvider::class,
],
Now, run this in terminal:, (*5)
php artisan migrate
Usage
After installation, any email sent by your website will be logged to email_logs
table in the site's database., (*6)