jeffersonsimaogoncalves / laravel-email-database-log
A simple database logger for all outgoing emails sent by Laravel website.
11.0.0
2023-07-05 13:59 UTC
Requires
- php: ^8.1
- doctrine/dbal: ^3.3
- illuminate/support: ^10.0
- nesbot/carbon: ^2.0
Requires (Dev)
- orchestra/testbench: ^8.0
- phpunit/phpunit: ^10.0
This package is auto-updated.
Last update: 2025-02-05 17:17:40 UTC
README
A simple database logger for all outgoing emails sent by Laravel website.
Installation
Step 1: Composer
Laravel Email Database Log can be installed via composer by running this line in terminal:
composer require jeffersonsimaogoncalves/laravel-email-database-log
Step 2: Configuration
You can skip this step if your version of Laravel is 5.5 or above. Otherwise, you have to add the following to your config/app.php in the providers array:
'providers' => [ // ... JeffersonSimaoGoncalves\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider::class, ],
Step 3: Migration
Publish migration files:
php artisan vendor:publish --tag=laravel-email-database-log-migration
Now, run this in terminal:
php artisan migrate
Usage
After installation, any email sent by your website will be logged to email_log
table in the site's database.