UNPKG

nestjs-mailable

Version:

A comprehensive NestJS mail package with design patterns for email handling, templating, and multi-provider support

9 lines (7 loc) 207 B
export const TEMPLATE_ENGINE = { HANDLEBARS: 'handlebars', EJS: 'ejs', PUG: 'pug', MJML: 'mjml', } as const; export type TemplateEngineType = (typeof TEMPLATE_ENGINE)[keyof typeof TEMPLATE_ENGINE];