Attempt to handle docker build fail

This commit is contained in:
Marcus Moore
2026-03-19 13:56:44 -07:00
parent 7b1a5aea19
commit e2e4743994
+1 -1
View File
@@ -153,7 +153,7 @@ return [
'to' => env('MAIL_BACKUP_NOTIFICATION_ADDRESS') ?? 'hello@example.com',
'from' => [
'address' => env('MAIL_FROM_ADDR', 'hello@example.com'),
'address' => filter_var(env('MAIL_FROM_ADDR'), FILTER_VALIDATE_EMAIL) ?: 'hello@example.com',
'name' => env('MAIL_FROM_NAME', 'Example'),
],
],