interface EmailSendV1NodeParameters {
attachments?: string;
bccEmail?: string;
ccEmail?: string;
fromEmail?: string;
html?: string;
options?: {
allowUnauthorizedCerts?: boolean;
replyTo?: string;
};
subject?: string;
text?: string;
toEmail?: string;
}
Properties§
§
§
§
§
§
§
§
§
§
readonly attachments?: string
readonly bcc Email?: string
Email address of BCC recipient
readonly cc Email?: string
Email address of CC recipient
readonly from Email?: string
Email address of the sender optional with name
readonly html?: string
HTML text message of email Type options: {"rows":5}
readonly options?: { ... }
Default: {}
readonly subject?: string
Subject line of the email
readonly text?: string
Plain text message of email Type options: {"rows":5}
readonly to Email?: string
Email address of the recipient
Name of the binary properties that contain data to add to email as attachment. Multiple ones can be comma-separated.