henryavila / laravel-nova-email-tracking
Track e-mail delivery with Mailgun Hooks and display the report on Laravel Nova Dashboard
Requires
- php: ^8.1.0
- henryavila/email-tracking: ^5.1.1
- illuminate/contracts: ^9.0|^10.0|^11.0
- spatie/laravel-package-tools: ^1.9.2
- spatie/laravel-permission: ^3.0|^4.0|^5.0|^6.0
Requires (Dev)
- larastan/larastan: ^v2.9.8
- laravel/nova: ^3.0|4.33.3
- laravel/pint: ^1.17
- nunomaduro/collision: ^6.0|^7.0|^8.1
- orchestra/testbench: ^7.0|^8.0|^9.0
- pestphp/pest: ^v2.13.0
- pestphp/pest-plugin-laravel: ^v2.3.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5|^10.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2024-11-19 17:55:25 UTC
README
This is a fork of henryavila/email-tracking
package. The original package droped support of Laravel Nova. This package was created to keep support for Laravel Nova.
This package will not receite update, since I moved from Laravel Nova to Filament
Mailgun configuration
On mailgun interface, add a webhook
to the url APP_URL/webhooks/mailgun
Installation
Setup Laravel Mail with mailgun at https://laravel.com/docs/master/mail#mailgun-driver
Define the environments variable in your .env
file
MAIL_MAILER=mailgun
MAILGUN_DOMAIN=yourdomain.com
MAILGUN_SECRET=key-99999999999999999999999999999999
Install the package via composer:
composer require henryavila/laravel-nova-email-tracking
Publish and run the migrations with:
php artisan vendor:publish --tag="email-tracking-migrations"
php artisan migrate
Publish the config file with:
php artisan vendor:publish --tag="email-tracking-config"
This is the contents of the published config file:
return [ /** * if defined, the Email model will use this database connection. * This connection name must be defined in database.connections config file */ 'email-db-connection' => null, /** * Save the HTML Body of all sent messages */ 'log-body-html' => true, /** * Save the TXT Body of all sent messages */ 'log-body-txt' => true, ];
Publish the lang files (optional) with:
php artisan vendor:publish --tag="email-tracking-translations"
Configuration
On NovaServiceProvider.php
, add the code:
/** * Get the tools that should be listed in the Nova sidebar. * * @return array */ public function tools() { \HenryAvila\LaravelNovaEmailTracking\Nova\LaravelNovaEmailTrackingTool::make() }
This will display the e-mails on Laravel Nova Dashboard.
If you need to customize the Nova Resource, just create a new one
extending HenryAvila\LaravelNovaEmailTracking\Nova\EmailResource
and use this code
/** * Get the tools that should be listed in the Nova sidebar. * * @return array */ public function tools() { \HenryAvila\LaravelNovaEmailTracking\Nova\LaravelNovaEmailTrackingTool::make() ->emailResource(CustomEmailResource::class) }
On all models that can send e-mail, and add the trait ModelWithEmailsSenderTrait
On EventServiceProvider.php
, add the code
/** * The event listener mappings for the application. * * @var array */ protected $listen = [ \Illuminate\Mail\Events\MessageSent::class => [ \HenryAvila\LaravelNovaEmailTracking\Listeners\LogEmailSentListener::class, ], ];
At this point, all e-mail sent from app, will be logged on the app, but the sender will not be saved
Save the Email sender
To be able to track the e-mail sender, you must create a custom Mailable
or Notification
. the default mail can't
define the sender (like Nova Reset password e-mail)
Mailable
When creating a new Mailable, overwrite the Base Mailable Class with HenryAvila\LaravelNovaEmailTracking\Mail\TrackableMail
Also, You must change the constructor and content function.
This is the default mail class:
class SampleMail extends \Illuminate\Mail\Mailable { public function __construct() { // } public function content(): Content { return new Content( view: 'view.name', ); } }
It must be overwritten by this one:
class SampleMail extends \HenryAvila\LaravelNovaEmailTracking\Mail\TrackableMail { public function __construct($modelSender) { $viewData = []; parent::__construct($modelSender, 'view.name', $viewData]); } }
To send the Mailable, just pass the model in the mailable constructor
// example: Send the Sample Mail to User with id 1 $user = User::find(1); Mail::to($user)->send(new App\Mail\SampleMail($user));
Notification
When creating a notification, all you have to do is to change the toMail()
method.
Replace the default code:
public function toMail($notifiable): MailMessage { return (new MailMessage) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); }
with this code:
public function __construct(public \Illuminate\Database\Eloquent\Model $model) { // } public function toMail($notifiable): MailMessage { return (new \HenryAvila\LaravelNovaEmailTracking\Notifications\TrackableNotificationMailMessage($this->model)) ->line('The introduction to the notification.') ->action('Notification Action', url('/')) ->line('Thank you for using our application!'); }
To send the notification
// User with id 1 send the sample notification to multiple $clientes $user = User::find(1); Notification::send($clientes, new SampleNotification($user));
Displaying the e-mails from sender
To be able to display the e-mails sent from a send, add this code in the fields()
method on nova resource
public function fields(Request $request) { return [ ... \HenryAvila\LaravelNovaEmailTracking\LaravelNovaEmailTracking::hasManyEmailsField(), ... ]; }
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.