n8n-nodes-imap-ai
Version:
Simplified IMAP node for n8n with AI-agent support. Clean and modular email and mailbox management for automation workflows.
23 lines • 1.36 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EmailPartsDescriptions = exports.EmailParts = void 0;
var EmailParts;
(function (EmailParts) {
EmailParts["BodyStructure"] = "bodyStructure";
EmailParts["Flags"] = "flags";
EmailParts["Size"] = "size";
EmailParts["AttachmentsInfo"] = "attachmentsInfo";
EmailParts["TextContent"] = "textContent";
EmailParts["HtmlContent"] = "htmlContent";
EmailParts["Headers"] = "headers";
})(EmailParts || (exports.EmailParts = EmailParts = {}));
exports.EmailPartsDescriptions = {
[EmailParts.TextContent]: 'Include the plain text content of emails - ideal for reading and analysis',
[EmailParts.HtmlContent]: 'Include the HTML formatted content - useful for preserving formatting',
[EmailParts.AttachmentsInfo]: 'Include information about attachments (filenames, sizes) - useful for file processing',
[EmailParts.Flags]: 'Include email status flags (read/unread, flagged, etc.) - useful for status analysis',
[EmailParts.Size]: 'Include email size in bytes - useful for storage analysis',
[EmailParts.BodyStructure]: 'Include technical email structure - useful for advanced processing',
[EmailParts.Headers]: 'Include email headers - useful for routing, security, and technical analysis',
};
//# sourceMappingURL=EmailParts.js.map