From 4283944f33f08d1f98965889b717d47560b16f52 Mon Sep 17 00:00:00 2001 From: Naser Mansour Date: Wed, 28 Jan 2026 16:48:32 +0200 Subject: [PATCH] mail fix #1 --- config/mail.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/config/mail.php b/config/mail.php index 522b284..66ef1d9 100644 --- a/config/mail.php +++ b/config/mail.php @@ -115,4 +115,22 @@ return [ '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' => 'default', + 'paths' => [ + resource_path('views/vendor/mail'), + ], + ], + ];