-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
Need the ability to send SES emails with attachments
Describe the solution you'd like
In components/amazon_ses/actions/send-email/send-email.mjs:
- Add optional props for file content and filename and file description (ideally would be new component for those, with prop allowing multiple attachments)
- If those prop(s) are set, add it to params
if (this.Attachments) { // Note, the createAttachments function needs to be created as well, which just maps the attachments to the proper format // See link in Additional context for format params.Content.Simple.Attachments = this.amazonSes.createAttachments(this.Attachments); }
Do you have a workaround?
Are you able to tackle the problem with an existing workaround, or can you not move forward without this feature?
I can manually make my own code for now
Comparable features in other tools?
Is this feature or one like it available in another platform? If so, we'd love to hear what you like about that implementation.
Yes. I like that it exists.
Additional context
https://docs.aws.amazon.com/ses/latest/dg/attachments.html
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request