Fix compatibility with old queue names

This commit is contained in:
Matthew Penner 2022-10-31 10:58:32 -06:00
parent e21aab2537
commit 1b78030291
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

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