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 download Attachments?: boolean
readonly download Attachments?: boolean
Whether attachments of emails should be downloaded. Only set if needed as it increases processing.
Source§readonly format?: "simple" | "raw" | "resolved"
readonly format?: "simple" | "raw" | "resolved"
The format to return the message in Default: "simple"
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_"