From 325e74e586327c899776791996d4b3625858518e Mon Sep 17 00:00:00 2001 From: Kovah Date: Sat, 1 Feb 2025 23:45:04 +0100 Subject: [PATCH] Make MAIL_DRIVER and MAIL_MAILER possible for mail configuration --- config/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 4ee969d7..e33c4bd0 100644 --- a/config/mail.php +++ b/config/mail.php @@ -13,7 +13,7 @@ return [ | */ - 'default' => env('MAIL_MAILER', 'log'), + 'default' => env('MAIL_MAILER', env('MAIL_DRIVER', 'log')), /* |--------------------------------------------------------------------------