Changed default SMTP sender address to noreply@example.com

This commit is contained in:
Tobias Fiebig 2022-03-23 12:38:59 +01:00 committed by msquare
parent dd6963a2bd
commit d77d6d6fcb
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ return [
'driver' => env('MAIL_DRIVER', 'mail'),
'from' => [
// From address of all emails
'address' => env('MAIL_FROM_ADDRESS', 'noreply@engelsystem.de'),
'address' => env('MAIL_FROM_ADDRESS', 'noreply@example.com'),
'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Engelsystem')),
],