mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
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[];
|
|
}
|