LaravelPackages.net
Acme Inc.
Toggle sidebar
tdchien/laravel-email-database-log

A simple database logger for all outgoing emails sent by Laravel website. Forked from Alexander Shvets

53
3
1.0.2
About tdchien/laravel-email-database-log

tdchien/laravel-email-database-log is a Laravel package for a simple database logger for all outgoing emails sent by laravel website. forked from alexander shvets. It currently has 3 GitHub stars and 53 downloads on Packagist (latest version 1.0.2). Install it with composer require tdchien/laravel-email-database-log. Discover more Laravel packages by tdchien or browse all Laravel packages to compare alternatives.

Last updated

Laravel Email Database Log

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.

Comments