UNPKG

@openinc/parse-server-opendash

Version:
12 lines (11 loc) 461 B
import { Core_Email } from "../types"; export declare function initEmailTransport(): Promise<void>; export declare function sendSimpleEmail(to: string, subject: string, text: string): Promise<Core_Email>; export declare function sendTemplateEmail({ to, subject, fallback, template, data, }: { to: string; subject: string; fallback: string; template: string; data: any; }): Promise<Core_Email>; export declare function init(): Promise<void>;