Filament plugin for instant e-mail alerts on web errors, simplifying monitoring and application stability.
You can install the package via composer:
composer require hugomyb/filament-error-mailer
Then, publish the config file with:
php artisan vendor:publish --tag="error-mailer-config"
This will create a config/error-mailer.php
file in your Laravel project.
This is the contents of the published config file:
return [ 'email' => [ 'recipient' => ['recipient1@example.com'], 'bcc' => [], 'cc' => [], 'subject' => 'An error was occured - ' . env('APP_NAME'), ], 'disabledOn' => [ // ], 'cacheCooldown' => 10, // in minutes];
Optionally, you can publish the mail view using:
php artisan vendor:publish --tag="error-mailer-views"
After publishing the configuration file, you can modify it to suit your needs. Open config/error-mailer.php
and
customize the following options:
'recipient'
: Set email addresses where error notifications will be sent.
'bcc'
: Set email addresses where error notifications will be sent in BCC.
'cc'
: Set email addresses where error notifications will be sent in CC.
'subject'
: Define the subject line for error notification emails. You can use placeholders like env('APP_NAME')
to
dynamically include your application's name.
'cacheCooldown'
: Set the cooling-off period (in minutes) for error notifications. If the same error occurs several times within this period
'disabledOn'
: You can specify a list of environments (based on APP_ENV
) where the Error Mailer will be disabled.
For example, if you want to disable the mailer in the local environment, add 'local' to the array:
'disabledOn' => [ 'local',],
⚠️ IMPORTANT ! Make sure to configure a mail server in your
.env
file :
MAIL_MAILER=smtpMAIL_HOST=your-smtp-host.comMAIL_PORT=587MAIL_USERNAME=your-smtp-usernameMAIL_PASSWORD=your-smtp-passwordMAIL_ENCRYPTION=tls
If the mail server is not configured in the .env
file, email notifications will not be sent.
Finally, don't forget to register the plugin in your AdminPanelProvider
:
...->plugins([ FilamentErrorMailerPlugin::make()])
This plugin is also available for a classic Laravel project without FilamentPHP : LaravelErrorMailer
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.