├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── EmailExceptionsServiceProvider.php ├── Exceptions │ └── EmailHandler.php ├── config │ └── laravelEmailExceptions.php └── views │ └── emailException.blade.php └── tests └── EmailHandlerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | .idea 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/EmailExceptionsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/src/EmailExceptionsServiceProvider.php -------------------------------------------------------------------------------- /src/Exceptions/EmailHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/src/Exceptions/EmailHandler.php -------------------------------------------------------------------------------- /src/config/laravelEmailExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/src/config/laravelEmailExceptions.php -------------------------------------------------------------------------------- /src/views/emailException.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/src/views/emailException.blade.php -------------------------------------------------------------------------------- /tests/EmailHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abrigham1/laravel-email-exceptions/HEAD/tests/EmailHandlerTest.php --------------------------------------------------------------------------------