I am sending email through Symfony Swiftmailer with AWS SES. This works fine.
I have a 2nd application on the same server where I want to create a 2nd set of credentials for the purpose of limitation of risks. Ie. we had the credentials leaked before and if that happens I only want 1 application to be affected.
For my first application my credentials work fine, but the secret key is peculiar in that it only contains alphabet characters. My 2nd set of credentials contains "/" and "+".
I've been on a call with AWS support who have shown me that I can send email with
openssl s_client -crlf -quiet -starttls smtp -connect email-smtp.ap-southeast-2.amazonaws.com:587 < SMTP.txt
where SMTP.txt contains base64 encoded credentials (this method )
Do I need to encode my credentials in my .env file?