feat(templates): add support for HTML templates

This commit is contained in:
Marc Sportiello
2026-07-19 10:10:31 +02:00
committed by Linus Rath
parent 0b62afb0f8
commit 0a30b2fb3a
6 changed files with 17 additions and 4 deletions
+1
View File
@@ -3,6 +3,7 @@ export interface EmailTemplate {
name: string;
subject: string;
body: string;
isHTML?: boolean;
category: string;
defaultRecipients?: {
to?: string[];