mandrill.send

Learn more: https://mandrillapp.com/api/docs/messages.JSON.html#method=send

Element details

type: meya.mandrill.component.send
class: MandrillSendComponent
path: /meya/mandrill/component/send.py
signature: -

Fields

fielddescription               requiredsignaturedefaulttype
specOverride the original spec for this element.nullSpec
contextSend context data with this component's event.{}
dict
sensitivetruebool
triggersActivate these dynamic triggers when the component runs. Check the component triggers guide for more info.[]list
fromThe sender of the email. Depending on the integration, this might need to be a verified email address.Recipient
toA list of recipients that will receive the email.list
ccA list of recipients that will receive a copy of the email.[]list
bccA list of recipients that will receive a blind copy of the email.[]list
subjectThe subject of the email.nullstr
textThe text body of the email. Text bodies are supported by all email clients, and is the fallback if the email client does not support HTML. We recommend that you always include a text body in your emails.nullstr
htmlThe HTML body of the email. Not all email clients support HTML, so you should always include a text body as a fallback.nullstr
headersA dictionary of custom email headers to include in the email.nulldict
wait_for_responseIf true, the component will wait for a response from the integration. If false, the component will not wait for a response from the integration and the email will be sent asynchronously. In this case a send failure will only be reported in your app logs and not to the user.truebool
integrationMandrillIntegrationRef

Usage reference

Basic

triggers:
  - keyword: meya.mandrill.component.send
steps:
  - type: meya.mandrill.component.send
    from:
      email: STRING
    to:
      - email: STRING
    integration: integration.mandrill

Full

triggers:
  - keyword: meya.mandrill.component.send
steps:
  - type: meya.mandrill.component.send
    spec:
      type: STRING
      data:
        STRING: ANY
      timeout: 123
      trigger_when: ANY
    context:
      STRING: ANY
    sensitive: false
    triggers:
      - type: STRING
        data:
          STRING: ANY
        timeout: 123
        trigger_when: ANY
    from:
      email: STRING
      name: STRING
    to:
      - email: STRING
        name: STRING
    cc:
      - email: STRING
        name: STRING
    bcc:
      - email: STRING
        name: STRING
    subject: STRING
    text: STRING
    html: STRING
    headers:
      foo: bar
    wait_for_response: false
    integration: integration.mandrill