UNPKG

@rocket.chat/apps-engine

Version:

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

10 lines (9 loc) 215 B
import type { IEmail } from '../email'; export interface IEmailCreator { /** * Sends an email through Rocket.Chat * * @param email the email data */ send(email: IEmail): Promise<void>; }