n8n-nodes-imap-ai
Version:
Simplified IMAP node for n8n with AI-agent support. Clean and modular email and mailbox management for automation workflows.
16 lines (15 loc) • 439 B
TypeScript
import { ICredentialType, INodeProperties } from 'n8n-workflow';
export declare const IMAP_CREDENTIALS_NAME = "imapApi";
export declare class ImapCredentials implements ICredentialType {
name: string;
displayName: string;
properties: INodeProperties[];
}
export interface ImapCredentialsData {
host: string;
port: number;
user: string;
password: string;
tls: boolean;
allowUnauthorizedCerts: boolean;
}