Looking to hire Laravel developers? Try LaraJobs

laravel-database-log-emails maintained by stojankukrika

Description
Log mails into database which go to send process
Last update
2017/11/30 08:43 (dev-master)
License
Links
Downloads
45

Comments
comments powered by Disqus

Laravel Database Log Emails

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

You can support me to this project and make some donation.

Installation

Laravel Database Log Emails can be installed via composer by requiring the stojankukrika/laravel-database-log-emails package in your project's composer.json.

{
    "require": {
        "stojankukrika/laravel-database-log-emails": "*"
    }
}

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

'providers' => [
    // ...
    stojankukrika\LaravelDatabaseLogEmails\LaravelDatabaseLogEmailsServiceProvider::class,
],

Now, run this in terminal:

php artisan migrate

Usage

After installation, any email sent by your website will be logged to email_logs table in the site's database.