Interface MailgunNodeParameters

Source
interface MailgunNodeParameters {
    attachments?: string;
    bccEmail?: string;
    ccEmail?: string;
    fromEmail?: string;
    html?: string;
    subject?: string;
    text?: string;
    toEmail?: string;
}

Properties§

§readonly attachments?: string

Name of the binary properties which contain data which should be added to email as attachment. Multiple ones can be comma-separated.

§readonly bccEmail?: string

Bcc Email address of the recipient. Multiple ones can be separated by comma.

§readonly ccEmail?: string

Cc Email address of the recipient. Multiple ones can be separated by comma.

§readonly fromEmail?: string

Email address of the sender optional with name

§readonly html?: string

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

§readonly subject?: string

Subject line of the email

§readonly text?: string

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

§readonly toEmail?: string

Email address of the recipient. Multiple ones can be separated by comma.