1 Answer
- Newest
- Most votes
- Most comments
2
Hi amarcin,
There are two options:
- Use subscription protocol "Email" instead of "Email-JSON". It has same result but in clear text.
- Send the notifications to a Lambda which can then send a formatted email via SES. For fan-out pattern and scalability, you could send to SNS->SQS<-Lambda
Thank you! I've found that even using the Email subscription protocol still returns a JSON object. Good tip on using SQS as well. I found this document for using a Lambda function: https://aws.amazon.com/blogs/messaging-and-targeting/forward-incoming-email-to-an-external-destination/