chore: email template

This commit is contained in:
xiaojunnuo
2025-12-12 23:39:09 +08:00
parent 43ba0b9da6
commit 437d956cad
8 changed files with 106 additions and 4 deletions
@@ -0,0 +1,10 @@
export type BuildContentReq = {
data: any;
}
export type BuildContentReply = Record<string, string>;
export interface ITemplateProvider {
buildContent: (params: BuildContentReq) => Promise<BuildContentReply>;
}