n8n-nodes-imap-ai
Version:
Simplified IMAP node for n8n with AI-agent support. Clean and modular email and mailbox management for automation workflows.
12 lines (11 loc) • 364 B
TypeScript
import { IExecuteFunctions } from 'n8n-workflow';
export interface EmailPartInfo {
partId: string;
filename?: string;
type: string;
encoding: string;
size: number;
disposition?: string;
parameters?: [string, string];
}
export declare function getEmailPartsInfoRecursive(context: IExecuteFunctions, bodyStructure: any): EmailPartInfo[];