From f769c2edac04b5e0bfc6ebab37652322c8b186d0 Mon Sep 17 00:00:00 2001 From: fro1991 Date: Thu, 23 Oct 2025 13:43:24 +0700 Subject: [PATCH] update --- src/types/email.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/types/email.ts b/src/types/email.ts index e42767b..0fd0b36 100644 --- a/src/types/email.ts +++ b/src/types/email.ts @@ -14,3 +14,11 @@ export class EmailBodyTrx { bcc: string[]; html: string; } + +export enum EmailTrxFrom { + "non_reply" = "non_reply", + "registration" = "registration", + "verification" = "verification", + "transaction" = "transaction", + "info" = "info", +}