Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 915 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 915 Bytes

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 shvetsgroup/laravel-email-database-log package in your project's composer.json.

{
    "require": {
        "shvetsgroup/laravel-email-database-log": "*"
    }
}

Next add the service provider and the alias to app/config/app.

'providers' => [
    // ...
    ShvetsGroup\LaravelEmailDatabaseLog\LaravelEmailDatabaseLogServiceProvider::class,
],

Now, run this in terminal:

php artisan vendor:publish --provider="ShvetsGroup\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.