aw-studio/laravel-maillog

Automatically log information about all outgoing mail in your Laravel application.

v0.4.1 2024-05-27 11:45 UTC

This package is auto-updated.

Last update: 2024-10-27 12:47:19 UTC


README

Automatically log information about all outgoing mail in your Laravel application

Setup

You can install the package via composer:

composer require aw-studio/laravel-maillog

Your application will now log outgoing email information to a maillog.log file in the storage/logs folder.

Configuration

Log to Database

Additionally, if you want to log your outgoing mails to your database, you may do so with the following steps:

Publishing the package configuration and database migrations

php artisan vendor:publish --provider="AwStudio\Maillog\MaillogServiceProvider"

Run the migrations

php artisan migrate

Update the channels config in config/maillog.php:

    'channels' => [
        // 'log',
        'database',
    ],

Sending Event

By default, this package is configured so that it only logs when mails have been sent. You can change the configuration so that sending is also logged. This generates very similar data records, but can be useful to be able to trace whether problems have occurred on the way and the dispatch has failed unexpectedly.

'logs' => [
    'sent',
    'sending',
],