From e2f6cf8a7214d80745f368c2d254ac566d98dd01 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa Date: Wed, 2 Apr 2025 19:27:06 +0200 Subject: [PATCH 1/2] Update config/mail.php to match the latest core configuration --- config/mail.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/config/mail.php b/config/mail.php index 756305b3c75..ff140eb439f 100644 --- a/config/mail.php +++ b/config/mail.php @@ -85,6 +85,7 @@ 'smtp', 'log', ], + 'retry_after' => 60, ], 'roundrobin' => [ @@ -93,6 +94,7 @@ 'ses', 'postmark', ], + 'retry_after' => 60, ], ], @@ -113,4 +115,23 @@ 'name' => env('MAIL_FROM_NAME', 'Example'), ], + /* + |-------------------------------------------------------------------------- + | Markdown Mail Settings + |-------------------------------------------------------------------------- + | + | 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! + | + */ + + 'markdown' => [ + 'theme' => env('MAIL_MARKDOWN_THEME', 'default'), + + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + ]; From 71ae79305477df6975ef1382aaffe6281f2ebbc9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 2 Apr 2025 12:34:10 -0500 Subject: [PATCH 2/2] Update mail.php --- config/mail.php | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/config/mail.php b/config/mail.php index ff140eb439f..00345321ce0 100644 --- a/config/mail.php +++ b/config/mail.php @@ -115,23 +115,4 @@ 'name' => env('MAIL_FROM_NAME', 'Example'), ], - /* - |-------------------------------------------------------------------------- - | Markdown Mail Settings - |-------------------------------------------------------------------------- - | - | 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! - | - */ - - 'markdown' => [ - 'theme' => env('MAIL_MARKDOWN_THEME', 'default'), - - 'paths' => [ - resource_path('views/vendor/mail'), - ], - ], - ];