gabrieliuga/laravel-mail-log

Record all outgoing emails from.
23,498 4
Install
composer require gabrieliuga/laravel-mail-log
Latest Version:v1.0.10
PHP:^7.2|^8.0
License:MIT
Last Updated:Apr 4, 2022
Links: GitHub  ·  Packagist
Maintainer: giuga

Laravel Mail Log

Latest Version on Packagist Build Status Quality Score StyleCI Total Downloads

Log all outgoing emails from your laravel application

Installation

You can install the package via composer:

composer require gabrieliuga/laravel-mail-log

Usage

php artisan migrate
php artisan vendor:publish --tag=maillog-config

Setup auto clear command in app/Console/Kernel.php add ClearOldEmails::class

/**
 * The Artisan commands provided by your application.
 *
 * @var array
 */
protected $commands = [
    ClearOldEmails::class,
];

/**
 * Define the application's command schedule.
 *
 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
 * @return void
 */
protected function schedule(Schedule $schedule)
{
    $schedule->command('giuga:purge-mail-log')->daily();
}

Testing

phpunit

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email me@iuga.dev instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

coreplex/meta

A PHP 5.4 Page-Meta Container that is easily extensible

1,179 1
calotype/seo

A package containing SEO helpers.

2,642 73
garf/laravel-title

Convenient seo-titles assembler for your web application

244 4
vinicius73/seotools

A package containing SEO helpers.

5,222 23
ycs77/inertia-laravel-ssr-head

Simple SSR Head for Inertia Laravel

16,084 34