PHP code example of hugomyb / error-mailer

1. Go to this page and download the library: Download hugomyb/error-mailer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

hugomyb / error-mailer example snippets


'providers' => [
    // ...
    \Hugomyb\ErrorMailer\ErrorMailerServiceProvider::class,
],

return [
    'email' => [
        'recipient' => '[email protected]',
        'subject' => 'An error was occured - ' . env('APP_NAME'),
    ],

    'disabledOn' => [
        //
    ],

    'cacheCooldown' => 10, // in minutes
];

'disabledOn' => [
    'local',
],
sh
php artisan error-mailer:publish-config