Package Data | |
---|---|
Maintainer Username: | tsiedsma |
Maintainer Contact: | tsiedsma@lithiumhosting.com (Troy Siedsma) |
Package Create Date: | 2016-04-25 |
Package Last Update: | 2021-03-05 |
Language: | Blade |
License: | MIT |
Last Refreshed: | 2024-11-15 03:03:02 |
Package Statistics | |
---|---|
Total Downloads: | 403 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 5 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
from Lithium Hosting
We're always open to pull requests, feel free to make this your own or help us make it better.
(c) Lithium Hosting, llc
This library is licensed under the MIT license; you can find a full copy of the license itself in the file /LICENSE
This package enables you to receive emails when Laravel throws an Exception. This enables you to react to issues in your application as they happen instead of waiting for user feedback.
Begin by installing this package through Composer.
Edit your project's composer.json
file to require lithiumdev/laravel-exception-mailer
.
"require": {
"laravel/framework": "5.*",
"lithiumdev/laravel-exception-mailer": "~1.0"
}
Next, update Composer from the Terminal:
composer update
Once this operation completes, the next step is to add the service provider. Open app/config/app.php
, and add a new item to the providers array.
LithiumDev\ExceptionMailer\ExceptionMailerServiceProvider::class,
to your providers array in app/config/app.php
php artisan vendor:publish --provider="LithiumDev\ExceptionMailer\ExceptionMailerServiceProvider"
to publish required resources.Now change Config file: config/laravel-exception-mailer/config.php
return [
'subject' => 'Laravel Exception',
'notify_emails' => [
[
'address' => 'your@email.address',
'name' => 'Your Name Here',
],
],
'email_template' => "laravel-exception-mailer::email.exception",
'notify_environment' => ['local'],
'prevent_exception' => ['Symfony\Component\HttpKernel\Exception\NotFoundHttpException'],
];
Be sure to set your email address and your name. You can add multiple arrays of users to receive notifications.
Manually Call
ExceptionMailer::notifyException($exception)
Manually set environment
ExceptionMailer::setEnvironment("local")