tdchien/laravel-email-database-log

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

1.0.2 2016-01-18 08:45 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:31:19 UTC


README

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.