Filament Mails can collect everything you might want to track about the mails that has been sent by your Filament app. Common use cases are provided in this package:
- Log all sent emails with only specific attributes
- View all sent emails in the browser using the viewer
- Collect feedback about the delivery from email providers using webhooks
- Get automatically notified when email bounces
- Prune logging of emails periodically
- Resend logged email to another recipient
- We're currently in the process of writing mail events support for other popular email service providers like Mailgun, Resend, SendGrid, Amazon SES and Mailtrap.
- Relate emails being send in Laravel directly to Eloquent models, for example the order confirmation email attached to an Order model.
Email as a protocol is very error prone. Succesfull email delivery is not guaranteed in any way, so it is best to monitor your email sending realtime. Using external services like Postmark, Mailgun or Resend email gets better by offering things like logging and delivery feedback, but it still needs your attention and can fail silently but horendously. Therefore we created Laravel Mails that fills in all the gaps.
The package is built on top of Laravel Mails.
You can install the package via composer:
composer require vormkracht10/filament-mails
You can publish and run the migrations with:
php artisan vendor:publish --tag="mails-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="mails-config"
php artisan vendor:publish --tag="filament-mails-config"
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-mails-views"
Then add the plugin to your PanelProvider
use Vormkracht10\FilamentMails\FilamentMailsPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugin(FilamentMailsPlugin::make());
}
Sometimes you want to customize the resource, like configuring which users or roles may access the resource. You can do this by overriding the MailResource
or EventResource
classes in the filament-mails
config file. Make sure your custom resource extends the original resource.
return [
'resources' => [
'mail' => \App\Filament\Resources\MailResource::class,
'event' => \App\Filament\Resources\EventResource::class,
],
];
The package provides a clear overview of all emails, including statistics and the ability to filter the data.
You can resend emails to the same or another recipient(s). This is useful when your email has bounced and you want to resend it.
You can view all relevant information about the email, such as the subject, the body, the attachments, the from address, the to address(es), the cc address(es), the bcc address(es), the reply to address, metadata and much more.
The package provides a preview of the email. This is useful to quickly check if the email is correct.
We also provide the raw HTML and plain text of the email.
The package also logs all events that are fired when an email is sent. This is useful to track the email sending process.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.