laravel-email-database-log maintained by magentron
Description
A simple database logger for all outgoing emails sent by Laravel website.
Authors
Last update
2025/09/09 14:04
(12.0.3)
License
Downloads
5 516
Last update
2025/09/09 14:04
License
Require
- php ^8.0.2
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- doctrine/dbal ^3.6
- nesbot/carbon ^3
Last update
2025/03/13 18:22
License
Require
- doctrine/dbal ^3.6
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- nesbot/carbon ^3
- php ^8.0.2|^8.1|^8.2|^8.3|^8.4
Last update
2025/03/13 18:22
License
Require
- php ^8.0.2|^8.1|^8.2|^8.3|^8.4
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- doctrine/dbal ^3.6
- nesbot/carbon ^3
Last update
2025/03/13 18:21
License
Require
- php ^8.0.2|^8.1|^8.2
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- doctrine/dbal ^3.6
- nesbot/carbon ^2.66
Last update
2025/03/13 14:12
License
Require
- php ^8.0.2|^8.1|^8.2
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- doctrine/dbal ^3.6
- nesbot/carbon ^2.66
Last update
2025/03/13 14:00
License
Require
- php ^8.0.2|^8.1|^8.2|^8.3|^8.4
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- doctrine/dbal ^3.6
- nesbot/carbon ^3
Last update
2025/02/26 18:15
License
Require
- php ^8.0.2|^8.1|^8.2
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- doctrine/dbal ^3.6
- nesbot/carbon ^3
Last update
2025/02/26 18:14
License
Require
- php ^8.0.2|^8.1|^8.2
- illuminate/support ^8.5|^9.0|^10.0|^11.0|^12.0
- doctrine/dbal ^3.6
- nesbot/carbon ^2.66
Last update
2024/09/12 13:23
License
Require
- php ^8.1
- illuminate/support ^10.0
- doctrine/dbal ^3.5.1
- nesbot/carbon ^2.67
Last update
2021/12/15 21:33
License
Require
- illuminate/support ~5.0|~6.0|~7.0|~8.0
- doctrine/dbal ^2.10
Last update
2021/12/04 21:15
License
Require
- illuminate/support ~5.0|~6.0|~7.0|~8.0
- doctrine/dbal ^2.10
Last update
2020/11/12 15:15
License
Require
- illuminate/support ~5.0|~6.0|~7.0|~8.0
- doctrine/dbal *
(forked from: shvetsgroup/laravel-email-database-log)
Laravel Email Database Log
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 magentron/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' => [
// ...
ShvetsGroup\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.