Skip to content

[FEATURE] Add Attachments to Amazon SES send-email #19186

@jason-jackson

Description

@jason-jackson

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

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions