Interface EmailReadImapV1NodeParameters

Source
interface EmailReadImapV1NodeParameters {
    dataPropertyAttachmentsPrefixName?: string;
    downloadAttachments?: boolean;
    format?: "simple" | "raw" | "resolved";
    mailbox?: string;
    options?: {
        allowUnauthorizedCerts?: boolean;
        customEmailConfig?: string;
        forceReconnect?: number;
    };
    postProcessAction?: "read"
    | "nothing";
}

Properties§

Source§

readonly dataPropertyAttachmentsPrefixName?: string

Prefix for name of the binary property to which to write the attachments. An index starting with 0 will be added. So if name is "attachment_" the first attachment is saved to "attachment_0" Default: "attachment_"

Source§

readonly downloadAttachments?: boolean

Whether attachments of emails should be downloaded. Only set if needed as it increases processing.

Source§

readonly format?: "simple" | "raw" | "resolved"

The format to return the message in Default: "simple"

Source§

readonly mailbox?: string

Default: "INBOX"

Source§

readonly options?: {
    allowUnauthorizedCerts?: boolean;
    customEmailConfig?: string;
    forceReconnect?: number;
}

Default: {}

Source§

readonly postProcessAction?: "read" | "nothing"

What to do after the email has been received. If "nothing" gets selected it will be processed multiple times. Default: "read"