interface MailgunNodeParameters {
attachments?: string;
bccEmail?: string;
ccEmail?: string;
customHeaders?: {
headers: { name?: string; value?: string }[];
};
fromEmail?: string;
html?: string;
replyTo?: string;
subject?: string;
tags?: string;
text?: string;
toEmail?: string;
}
Properties§
§
§
§
§
§
§
§
§
§
§
readonly attachments?: string
readonly bcc Email?: string
Bcc Email address of the recipient. Multiple ones can be separated by comma.
readonly cc Email?: string
Cc Email address of the recipient. Multiple ones can be separated by comma.
readonly custom Headers?: { ... }
Arbitrary email headers. Enter only the header name (e.g. X-Custom-Header); the h: prefix is added automatically. Default: {} Type options: {"multipleValues":true}
readonly from Email?: string
Email address of the sender optional with name
readonly html?: string
HTML text message of email Type options: {"rows":5,"editor":"htmlEditor"}
readonly reply To?: string
Reply-To header. Recipients will use this address when replying.
readonly subject?: string
Subject line of the email
Tags for segmentation and analytics (comma-separated). Sent as o:tag.
readonly text?: string
Plain text message of email Type options: {"rows":5}
readonly to Email?: string
Email address of the recipient. Multiple ones can be separated by comma.
Name of the binary properties which contain data which should be added to email as attachment. Multiple ones can be comma-separated.