Log all outgoing emails in your Laravel project within your Filament panel. You can also resend emails with 1-click in case your recipient hasn't received your email.
You can install the package via composer:
composer require rickdbcn/filament-email
Publish and run the migrations with
php artisan vendor:publish --tag="filament-email-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="filament-email-config"
Register the plugin through your panel service provider:
// add this within return $panel:
->plugin(new \RickDBCN\FilamentEmail\FilamentEmail())
composer test
The MIT License (MIT). Please see License File for more information.