reg2005/laravel-email-database-log

A simple database logger for all outgoing emails sent by Laravel website.
955 2
Install
composer require reg2005/laravel-email-database-log
Latest Version:1.1.3
License:MIT
Last Updated:Dec 15, 2016
Links: GitHub  ·  Packagist
Maintainer: reg2005

Laravel 5 Email Database Log

A simple database logger for all outgoing emails sent by Laravel 5 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": {
        "Reg2005/laravel-email-database-log": "*"
    }
}

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

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

Now, run this in terminal:

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

Related Packages

arcanedev/laravel-markdown

Markdown parsing for Laravel with blade directives

38,121 12
maxhoffmann/parsedown-laravel

A parsedown (markdown) wrapper for Laravel

62,011 55
ccoley/laravel-markdown

A Parsedown wrapper for Laravel 5

3,705