Re-enabled plaintext view for email notifications

Updated mail notifications to set the HTML and plaintext views since before
no plaintext version was being created.

Closes #1182
This commit is contained in:
Dan Brown
2018-12-16 20:44:57 +00:00
parent 651ae2f3be
commit 7f6929d716
5 changed files with 55 additions and 54 deletions

View File

@ -110,15 +110,19 @@ return [
/*
|--------------------------------------------------------------------------
| Mail "Pretend"
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| When this option is enabled, e-mail will not actually be sent over the
| web and will instead be written to your application's logs files so
| you may inspect the message. This is great for local development.
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/
'pretend' => env('MAIL_PRETEND', false),
'markdown' => [
'theme' => 'default',
'paths' => [
resource_path('views/vendor/mail'),
],
],
];