Interface EmailSendV1NodeParameters

Source
interface EmailSendV1NodeParameters {
    attachments?: string;
    bccEmail?: string;
    ccEmail?: string;
    fromEmail?: string;
    html?: string;
    options?: {
        allowUnauthorizedCerts?: boolean;
        replyTo?: string;
    };
    subject?: string;
    text?: string;
    toEmail?: string;
}

Properties§

Source§

readonly attachments?: string

Name of the binary properties that contain data to add to email as attachment. Multiple ones can be comma-separated.

Source§

readonly bccEmail?: string

Email address of BCC recipient

Source§

readonly ccEmail?: string

Email address of CC recipient

Source§

readonly fromEmail?: string

Email address of the sender optional with name

Source§

readonly html?: string

HTML text message of email Type options: {"rows":5}

Source§

readonly options?: { allowUnauthorizedCerts?: boolean; replyTo?: string }

Default: {}

Source§

readonly subject?: string

Subject line of the email

Source§

readonly text?: string

Plain text message of email Type options: {"rows":5}

Source§

readonly toEmail?: string

Email address of the recipient