1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
This commit is contained in:
Hillel Coren 2015-05-19 22:14:24 +03:00
commit 0ffd13f864
2 changed files with 2 additions and 1 deletions

View File

@ -15,5 +15,6 @@ MAIL_PORT=587
MAIL_ENCRYPTION=tls
MAIL_HOST
MAIL_USERNAME
MAIL_FROM_ADDRESS
MAIL_FROM_NAME
MAIL_PASSWORD

View File

@ -54,7 +54,7 @@ return [
|
*/
'from' => ['address' => env('MAIL_USERNAME'), 'name' => env('MAIL_FROM_NAME')],
'from' => ['address' => env('MAIL_FROM_ADDRESS'), 'name' => env('MAIL_FROM_NAME')],
/*
|--------------------------------------------------------------------------