/*** * * SaaSquatch Type Definitions * * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. * * Generated on 2026-03-20T21:11:42.771Z * ***/ /*** * HtmlEmail.schema.json * Generated on 2026-03-20T21:11:42.907Z * This file was automatically generated. DO NOT edit it by hand, instead edit the related JSON Schema file. ***/ export type FromName = string export type FromAddress = string export type Subject = string export type BCC = string[] /** * Raw HTML content that can use {{mergeTags}} from handlebars */ export type HTMLContent = string /** * Defines the customization points available in an HTML body email template. */ export interface HTMLEmailTemplateSchema { meta: Email htmlContent: HTMLContent jsonContent?: JSONContent } export interface Email { fromName: FromName fromAddress: FromAddress subject: Subject bcc?: BCC } /** * The JSON content for the email editor */ export interface JSONContent { [k: string]: unknown }