Skip to content

Adding ICS File to Amazon Bulk Emails

0

How can I add an ICS file to each email when using sendBulkTemplatedEmail? I am using the JavaScript SDK but any ideas are appreciated.

1 Answer
0

Adding an ICS file as an attachment to bulk emails sent through Amazon SES using the sendBulkTemplatedEmail function is not directly supported by the SES API.

To achieve this, you can use the following approach:

  1. Iterate over your recipients and send emails individually, rather than using the bulk templated email feature.
  2. Attach the ICS file to each individual email. This is because the bulk templated email feature does not support attachments.
  3. To send emails with attachments using the AWS SDK for JavaScript, you can use the sendRawEmail operation instead of sendBulkTemplatedEmail.
  4. This allows you to include the ICS file as an attachment.
AWS
EXPERT
answered a year ago
EXPERT
reviewed a year ago
  • We are currently using sendRawEmail to send each individual email but are trying to move to bulk email as we sometimes need to send 1000+ templated emails at the same time.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.