Looking to hire Laravel developers? Try LaraJobs

laravel-exception-mail maintained by fahedaljghine

Description
This package will allow you to specify email addresses to send them all the exceptions that occurs in Laravel application.
Last update
2022/06/24 17:52 (dev-main)
License
Downloads
519

Comments
comments powered by Disqus

laravel-exception-mail

Laravel 9.0 Software License

This package will allow you to specify email addresses to send them all the exceptions that occurs in Laravel application.

Contact Me

You can check all of my information by Checking my website.

Installation

You can install the package via composer:

composer require fahedaljghine/laravel-exception-mail

The package will automatically register itself.

You must publish the config with:

php artisan vendor:publish --provider="Fahedaljghine\ExceptionMail\ExceptionMailServiceProvider" --tag="config"

This is the contents of the file which will be published at config/exception-mail.php


return [
    /*
     * enable or disable the package
     */
    'enabled' => true,
    
    /*
    * Add email addresses you want them to receive the exception
    */
    'addresses' => [
        //'developer1@companydomain.com',
        //'developer2@companydomain.com',
    ],
];

If you would like to change the email template you can publish the blade email template with:

php artisan vendor:publish --provider="Fahedaljghine\ExceptionMail\ExceptionMailServiceProvider" --tag="blade"

The blade template will be published at resources/views/emails/exception-mail.blade.php

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

You are welcome to contribute

Dontae

Credits

License

The MIT License (MIT). Please see License File for more information.