Fix missing email sender

This commit is contained in:
Matthew Penner
2022-10-31 11:02:34 -06:00
parent 1b78030291
commit 846ff7644f

View File

@@ -91,7 +91,7 @@ return [
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', env('MAIL_FROM')),
'address' => env('MAIL_FROM_ADDRESS', env('MAIL_FROM', 'hello@example.com')),
'name' => env('MAIL_FROM_NAME', 'Pterodactyl Panel'),
],