n8n-nodes-imap-ai
Version:
Simplified IMAP node for n8n with AI-agent support. Clean and modular email and mailbox management for automation workflows.
24 lines (23 loc) • 810 B
TypeScript
export declare enum EmailFlags {
Answered = "answered",
Deleted = "deleted",
Draft = "draft",
Flagged = "flagged",
Recent = "recent",
Seen = "seen"
}
export declare enum ImapFlags {
Answered = "\\Answered",
Flagged = "\\Flagged",
Deleted = "\\Deleted",
Seen = "\\Seen",
Draft = "\\Draft"
}
export declare const EmailFlagsDescriptions: {
readonly answered: "Find emails that have been replied to (answered flag set)";
readonly deleted: "Find emails marked for deletion";
readonly draft: "Find draft emails (unsent emails)";
readonly flagged: "Find important/flagged emails (starred emails)";
readonly recent: "Find recently received emails";
readonly seen: "Find read emails (true) or unread emails (false). AI: \"unread emails\" = false";
};