mr4-lc/laravel-email-audit-log

This Service provider will monitor all emails that has been sent out of your system. Sent emails will be stored in email_audit_log table

0.0.1 2024-03-01 04:02 UTC

This package is auto-updated.

Last update: 2024-08-30 04:56:10 UTC


README

Latest Version Issues Stars

Laravel Email Audit Log

This service provider will monitor all emails that has been sent out of your system. Sent emails will be stored in email_audit_log table.

Any feedback / enhancement request is more than welcome!

Help and docs

We use GitHub issues only to discuss bugs and new features. For support please refer to:

Installing Laravel Audit Log

The recommended way to install Laravel Audit Log is through Composer.

composer require mr4-lc/laravel-email-audit-log

Publishing migrations

Lets publish package migrations

php artisan vendor:publish --tag=email-audit-log-migrations 

Migrating database

php artisan migrate

Usage and reports

There is already aliased eloquent model

use mr4-lc\LaravelEmailAuditLog\Models\EmailAudit;

EmailAudit::all(); //Will return collection of models