UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

13 lines (12 loc) 252 B
export interface IEmail { to: string | string[]; /** * @deprecated this will be inferred from the settings */ from?: string; replyTo?: string; subject: string; html?: string; text?: string; headers?: string; }