Simple email sender request builder

[apis/mailjet/v3.1/Simple email sender request builder]


Constructs a single-email request to be used by the apis/mailjet/v3.1/Email sender node, with the parameters received.


Keywords: email, send, mailjet, message, build

Input ports

  • from: {"Name": string, "Email": string}

    Receives the sender.

  • to: {"Name": string, "Email": string}[]

    Receives the recipients.

  • subject: string

    Receives the subject.

  • message body: string

    Receives the message body.

Output ports

  • request:

    {
      "Messages": {
        "From": {"Email": string, "Name": string},
        "To": {"Email": string, "Name": string}[],
        "Subject": string,
        "TextPart": string,
        "HTMLPart": string
      }[]
    }

    Sends the constructed request to be used by the apis/mailjet/v3.1/Email sender node.

Last updated