@visulima/email
Version:
A comprehensive email library with multi-provider support, crypto utilities, and template engines
9 lines (8 loc) • 368 B
TypeScript
import type { EmailOptions } from "../types.d.ts";
/**
* Builds a MIME-formatted email message from email options.
* @param options The email options to build the MIME message from.
* @returns The MIME-formatted email message as a string.
*/
declare const buildMimeMessage: <T extends EmailOptions>(options: T) => Promise<string>;
export default buildMimeMessage;