interface EmailReadImapV1NodeParameters {
dataPropertyAttachmentsPrefixName?: string;
downloadAttachments?: boolean;
format?: "simple" | "raw" | "resolved";
mailbox?: string;
options?: {
allowUnauthorizedCerts?: boolean;
customEmailConfig?: string;
forceReconnect?: number;
};
postProcessAction?: "read"
| "nothing";
}Properties§
§§§§§
readonly data Property Attachments Prefix Name?: string§
readonly download Attachments?: booleanWhether attachments of emails should be downloaded. Only set if needed as it increases processing.
readonly format?: "simple" | "raw" | "resolved"The format to return the message in Default: "simple"
readonly mailbox?: stringDefault: "INBOX"
readonly options?: { ... }Default: {}
readonly post Process Action?: "read" | "nothing"What to do after the email has been received. If "nothing" gets selected it will be processed multiple times. Default: "read"
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_"