Added env variable MAIL_FROM_NAME to allow the email sender name to be
customised. Also added MAIL_FROM to .env.example
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
+MAIL_FROM=null
+MAIL_FROM_NAME=null
|
*/
- 'from' => ['address' => env('MAIL_FROM', '
[email protected]'), 'name' =>
'BookStack'],
+ 'from' => ['address' => env('MAIL_FROM', '
[email protected]'), 'name' =>
env('MAIL_FROM_NAME','BookStack')],
/*
|--------------------------------------------------------------------------