Skip to content

rolandalla/laravel-email-auditing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Email Auditing

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();