Env for mail sender address + name

This commit is contained in:
Jrean 2016-11-08 23:37:35 +08:00
parent cddb8a254a
commit d47697e781
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@
*/
'from' => [
'address' => 'hello@example.com',
'name' => 'Example',
'address' => env('MAIL_SENDER_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_SENDER_NAME', 'Example'),
],
/*