AWS SES - Inbound S3 Email

I have the following use case:

  • After receiving incoming email with the application (SES)
  • Call lambda function to retrieve only this email attachment and save to S3

I looked at the SES SDK (nodejs) and could not find an API that could help with this.

Is this supported due to the box using the SES SDK (nodejs, java)? Or do you need to read the entire message, and then figure out part of the attachment?

Can anyone with similar requirements implement this?

+5
source share
1 answer

This is not supported by SES sdk. You will have to analyze the original MIME format and extract the file. See this answer on how you can try this with Lambda

+2
source

All Articles