tdchien / laravel-email-database-log
A simple database logger for all outgoing emails sent by Laravel website. Forked from Alexander Shvets
1.0.2
2016-01-18 08:45 UTC
Requires
- illuminate/support: ~5.0
This package is not auto-updated.
Last update: 2024-11-09 19:19:56 UTC
README
A simple database logger for all outgoing emails sent by Laravel website.
Installation
Laravel Email Database Log can be installed via composer by requiring the tdchien/laravel-email-database-log
package in your project's composer.json
.
{ "require": { "tdchien/laravel-email-database-log": "*" } }
Next add the service provider and the alias to app/config/app
.
'providers' => [ // ... tdchien\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider::class, ],
Now, run this in terminal:
php artisan vendor:publish --provider="tdchien\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider" --tag="migrations" php artisan migrate
Usage
After installation, any email sent by your website will be logged to email_log
table in the site's database.