1 Answer
- Newest
- Most votes
- Most comments
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:
- Iterate over your recipients and send emails individually, rather than using the bulk templated email feature.
- Attach the ICS file to each individual email. This is because the bulk templated email feature does not support attachments.
- To send emails with attachments using the AWS SDK for JavaScript, you can use the sendRawEmail operation instead of sendBulkTemplatedEmail.
- This allows you to include the ICS file as an attachment.
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 9 months 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.