rolandalla/laravel-email-auditing

The Email Auditing Service tracks all outgoing emails from your system, storing them in the `email_auditing` table.

0.1.1 2024-02-27 20:18 UTC

This package is auto-updated.

Last update: 2024-05-27 20:48:24 UTC


README

To use the Email Auditing Service, ensure it's integrated into your email sending process. Once integrated, all outgoing emails will be monitored and stored in the email_auditing table.

Installing

composer require rolandalla/laravel-email-auditing

Publishing migrations

Lets publish package migrations

php artisan vendor:publish --tag=email-auditing-migrations 

Migrating database

php artisan migrate

Usage and reports

There is already aliased eloquent model

use Roland\LaravelEmailAuditing\Models\EmailAuditing;

EmailAuditing::all();