emailengine-client
Version:
A TypeScript client for the EmailEngine API
30 lines (29 loc) • 770 B
TypeScript
/**
* Message reference for a reply or a forward. This is EmailEngine specific ID, not Message-ID header value.
*/
export declare class MessageReference {
/**
* Referenced message ID
*/
'message': string;
/**
* Action
*/
'action'?: string;
/**
* If true, then blockquotes the email that is being replied to
*/
'inline'?: boolean;
/**
* If true, then includes attachments in forwarded message
*/
'forwardAttachments'?: boolean;
/**
* If true, then processes the email even if the original message is not available anymore
*/
'ignoreMissing'?: boolean;
/**
* If enabled then fetch the data from the Document Store instead of IMAP
*/
'documentStore'?: boolean;
}