Edit

Office.ReplyFormData interface

A ReplyFormData object that contains body or attachment data and a callback function. Used when displaying a reply form.

Remarks

[Api set: Mailbox 1.1]

Minimum permission level: read item

Applicable Outlook mode: Read

Properties

attachments

An array of ReplyFormAttachment that are Base64-encoded files, Exchange items, or file attachments.

callback

When the reply display call completes, the function passed in the callback parameter is called with a single parameter, asyncResult, which is an Office.AsyncResult object.

htmlBody

A string that contains text and HTML and that represents the body of the reply form. The string is limited to 32 KB.

options

An object literal that contains the asyncContext property. Use the asyncContext property to specify any object that you want to access in the callback function.

Property Details

attachments

An array of ReplyFormAttachment that are Base64-encoded files, Exchange items, or file attachments.

attachments?: ReplyFormAttachment[];

Property Value

Remarks

[Api set: Mailbox 1.2]

Minimum permission level: read item

Applicable Outlook mode: Read

callback

When the reply display call completes, the function passed in the callback parameter is called with a single parameter, asyncResult, which is an Office.AsyncResult object.

callback?: (asyncResult: Office.AsyncResult<any>) => void;

Property Value

(asyncResult: Office.AsyncResult<any>) => void

Remarks

[Api set: Mailbox 1.1]

Minimum permission level: read item

Applicable Outlook mode: Read

htmlBody

A string that contains text and HTML and that represents the body of the reply form. The string is limited to 32 KB.

htmlBody?: string;

Property Value

string

Remarks

[Api set: Mailbox 1.1]

Minimum permission level: read item

Applicable Outlook mode: Read

options

An object literal that contains the asyncContext property. Use the asyncContext property to specify any object that you want to access in the callback function.

options?: Office.AsyncContextOptions;

Property Value

Remarks

[Api set: Mailbox 1.1]

Minimum permission level: read item

Applicable Outlook mode: Read