changed mail default to sendmail

This commit is contained in:
Codex Agent
2025-11-20 17:35:23 +01:00
parent 5d25d1f261
commit b8cd32c030

View File

@@ -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'),
],
];