Browse Source

default email from name to app name (#5178)

Andrew Minion 4 years ago
parent
commit
c5f9126981
1 changed files with 1 additions and 1 deletions
  1. 1 1
      config/mail.php

+ 1 - 1
config/mail.php

@@ -57,7 +57,7 @@ return [
 
     'from' => [
         'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
-        'name' => env('MAIL_FROM_NAME', 'Example'),
+        'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Example')),
     ],
 
     /*