From b8cd32c0301e4ae11a50e91ad93c30f0c894f351 Mon Sep 17 00:00:00 2001 From: Codex Agent Date: Thu, 20 Nov 2025 17:35:23 +0100 Subject: [PATCH] changed mail default to sendmail --- config/mail.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/mail.php b/config/mail.php index 756305b..ad965a0 100644 --- a/config/mail.php +++ b/config/mail.php @@ -14,7 +14,7 @@ return [ | */ - 'default' => env('MAIL_MAILER', 'log'), + 'default' => env('MAIL_MAILER', 'sendmail'), /* |-------------------------------------------------------------------------- @@ -109,8 +109,8 @@ return [ */ 'from' => [ - 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), - 'name' => env('MAIL_FROM_NAME', 'Example'), + 'address' => env('MAIL_FROM_ADDRESS', 'info@fotospiel.app'), + 'name' => env('MAIL_FROM_NAME', 'Dein Fotospiel.App Team'), ], ];