I’ve been playing around with Bamboo. Instead of sending the email template with its data, Is there anyway in Bamboo to send just only the data of the personalized template to SES (https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html)? Or any elixir libraries that can do that?
Like this for example:
{
"Source": "sender@example.com",
"Template": "MyTemplate",
"ConfigurationSetName": "ConfigSet",
"Destination": {
"ToAddresses": [ "alejandro.rosalez@example.com"
]
},
"TemplateData": "{ \"name\":\"Alejandro\", \"favoriteanimal\": \"alligator\" }"
}