fahedaljghine/laravel-exception-mail

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

1.0.3 2022-06-24 15:52 UTC

This package is auto-updated.

Last update: 2024-04-24 19:47:41 UTC


README

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.