magentron/laravel-email-database-log

A simple database logger for all outgoing emails sent by Laravel website.
7,008
Install
composer require magentron/laravel-email-database-log
Latest Version:12.0.3
PHP:^8.0.2
License:MIT
Last Updated:Sep 9, 2025
Links: GitHub  ·  Packagist
Maintainer: Magentron

(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.

Related Packages

caseraph/laravel-email-database-log

A simple database logger for all outgoing emails sent by Laravel website.

1,227 0
jeremykenedy/laravel-email-database-log

A database logger for all outgoing emails sent by your Laravel application.

17,392 10
eventhomes/laravel-mandrillhooks

A simple Mandrill webhook controller to help with events. Compatible with Larave...

75,628 63
maxhoffmann/parsedown-laravel

A parsedown (markdown) wrapper for Laravel

62,011 55