mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
Fix SES configuration process to set correct SES_KEY and SES_SECRET (#74)
* Fix SES configuration process to set correct SES_KEY and SES_SECRET * Fixed SES from name --------- Co-authored-by: Jay Muntz <jaymuntz@jaymuntz.com>
This commit is contained in:
@@ -265,9 +265,9 @@ class EnvironmentManager
|
||||
'MAIL_PASSWORD' => config('mail.password'),
|
||||
'MAIL_ENCRYPTION' => $request->get('mail_encryption'),
|
||||
'MAIL_FROM_ADDRESS' => $request->get('from_mail'),
|
||||
'MAIL_FROM_NAME' => $request->get('from_mail'),
|
||||
'SES_KEY' => $request->get('from_mail'),
|
||||
'SES_SECRET' => $request->get('from_name'),
|
||||
'MAIL_FROM_NAME' => $request->get('from_name'),
|
||||
'SES_KEY' => $request->get('mail_ses_key'),
|
||||
'SES_SECRET' => $request->get('mail_ses_secret'),
|
||||
];
|
||||
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user