1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-18 23:42:25 +02:00

Fix RFC Error

When using AWS/Mandrill etc, using MAIL_USERNAME as the "From Address"
causes errors. Need to create new .env variable.
This commit is contained in:
James Graham 2015-05-15 21:15:22 +12:00
parent 935780f7bc
commit ba1231357a
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')],
/*
|--------------------------------------------------------------------------