tia
Version:
Time is All (logs driven test engine with ExtJs support)
10 lines (9 loc) • 317 B
TypeScript
/**
* Sends email.
*
* @param subj
* @param {Array of Strings} txtAttachments
* @param {Array of Strings} [zipAttachments]
* @returns {Promise<T>}
*/
export declare function send(subj: string, htmlDif: string, txtDif: string, txtAttachments: string[], zipAttachments?: string[]): Promise<unknown> | undefined;