yuyu-tech / mail-log
Laravel Package to log all outgoing email into database.
1.0.3
2023-05-12 12:29 UTC
Requires
- laravel/framework: ^5.3|^6.0|^7.0|^8|^9|^10
This package is auto-updated.
Last update: 2025-03-12 16:44:28 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 yuyu-tech/mail-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' => [ // ... Yuyu\MailLog\Providers\MailLogServiceProvider::class, ],
Step 3: Publish vendor file
Now, run this in terminal:
php artisan vendor:publish --provider=Yuyu\MailLog\Providers\MailLogServiceProvider
Step 4: 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.