From 72311db1bd664e43737f03a6dc6ba8295fa8a268 Mon Sep 17 00:00:00 2001 From: Jay Muntz Date: Fri, 31 May 2024 06:46:06 -0400 Subject: [PATCH] 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 --- app/Space/EnvironmentManager.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Space/EnvironmentManager.php b/app/Space/EnvironmentManager.php index 8ae8200a..4c761fd7 100755 --- a/app/Space/EnvironmentManager.php +++ b/app/Space/EnvironmentManager.php @@ -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;