Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/utils/sendAndWait/interfaces.ts
2025-09-08 04:48:28 +08:00

17 lines
303 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface IEmail {
from?: string;
to?: string;
cc?: string;
bcc?: string;
replyTo?: string;
inReplyTo?: string;
reference?: string;
references?: string;
subject: string;
body: string;
htmlBody?: string;
attachments?: IDataObject[];
}