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?: stringEmail address of BCC recipient
readonly cc Email?: stringEmail address of CC recipient
readonly from Email?: stringEmail address of the sender optional with name
readonly html?: stringHTML text message of email Type options: {"rows":5}
readonly options?: { ... }Default: {}
readonly subject?: stringSubject line of the email
readonly text?: stringPlain text message of email Type options: {"rows":5}
readonly to Email?: stringEmail address of the recipient
Name of the binary properties that contain data to add to email as attachment. Multiple ones can be comma-separated.