interface TemplatePreviewOptions {
    content: string;
    recipientVariables?: Record<string | symbol, string>;
    templateVariables?: Record<string | symbol, unknown>;
}

Properties

content: string
recipientVariables?: Record<string | symbol, string>
templateVariables?: Record<string | symbol, unknown>