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:
Jay Muntz
2024-05-31 06:46:06 -04:00
committed by GitHub
parent 1e530e0387
commit 72311db1bd

View File

@@ -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;