mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
16 lines
267 B
TypeScript
16 lines
267 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;
|
||
|
}
|