This commit is contained in:
fro1991
2025-10-23 13:41:35 +07:00
parent 2a0e6b0389
commit 11d46a3806

View File

@ -5,3 +5,12 @@ export class EmailBody {
bcc: string[]; bcc: string[];
html: string; html: string;
} }
export class EmailBodyTrx {
from: string;
subject: string;
to: string[];
cc: string[];
bcc: string[];
html: string;
}