I have the following use case:
- Once and incoming email with attachment is received (SES)
- Invoke a lambda function to Extract that email's attachment only and save to S3
I've looked at SES SDK (nodejs) and wasn't successful in finding an API that could help with this.
Is this supported out-of-the-box using SES SDK (nodejs, java)? Or one has to read the entire message and then figure out the attachment portion?
Has anyone with similar requirements been able to implement this?