mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
41228b472d
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
16 lines
281 B
TypeScript
16 lines
281 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;
|
|
subject: string;
|
|
body: string;
|
|
htmlBody?: string;
|
|
attachments?: IDataObject[];
|
|
}
|