This commit is contained in:
fro1991
2025-10-23 13:43:24 +07:00
parent 0664dcf5f5
commit f769c2edac

View File

@ -14,3 +14,11 @@ export class EmailBodyTrx {
bcc: string[]; bcc: string[];
html: string; html: string;
} }
export enum EmailTrxFrom {
"non_reply" = "non_reply",
"registration" = "registration",
"verification" = "verification",
"transaction" = "transaction",
"info" = "info",
}