type alias EmailTemplateFormat

A single part of an email template: the subject line, the html body, or the plain-text body. A plain union for the same reason.

Definition

"subject"
| "html"
| "text"

Usage

import { type EmailTemplateFormat } from "doc.ts";