Interface ReplyToEmailOptions

Options for replying to email with API

Export

Interface

ReplyToEmailOptions

Hierarchy

  • ReplyToEmailOptions

Properties

attachments?: string[]

List of uploaded attachments to send with the reply. Optional.

Memberof

ReplyToEmailOptions

body: string

Body of the reply email you want to send

Memberof

ReplyToEmailOptions

charset?: string

The charset that your message should be sent with. Optional. Default is UTF-8

Memberof

ReplyToEmailOptions

customHeaders?: {
    [key: string]: string;
}

Optional custom headers

Memberof

ReplyToEmailOptions

Type declaration

  • [key: string]: string
from?: string

The from header that should be used. Optional

Memberof

ReplyToEmailOptions

html?: boolean

Memberof

ReplyToEmailOptions

isHTML: boolean

Is the reply HTML

Memberof

ReplyToEmailOptions

replyTo?: string

The replyTo header that should be used. Optional

Memberof

ReplyToEmailOptions

sendStrategy?: SINGLE_MESSAGE

How an email should be sent based on its recipients

Memberof

ReplyToEmailOptions

template?: string

Template ID to use instead of body. Will use template variable map to fill defined variable slots.

Memberof

ReplyToEmailOptions

templateVariables?: {
    [key: string]: object;
}

Template variables if using a template

Memberof

ReplyToEmailOptions

Type declaration

  • [key: string]: object
useInboxName?: boolean

Optionally use inbox name as display name for sender email address

Memberof

ReplyToEmailOptions