n8n-nodes-base
Version:
Base nodes of n8n
14 lines • 336 B
TypeScript
export interface IAttachment {
file_data?: string;
file_name?: string;
}
export interface IEmail {
address_field?: string;
attachments?: IAttachment[];
contacts: number[];
html_content?: string;
plain_content?: string;
subject?: string;
user_id: number;
}
//# sourceMappingURL=EmaiIInterface.d.ts.map