add email body

This commit is contained in:
2024-11-30 12:18:33 +07:00
parent 6e2361166a
commit a9356611d4
2 changed files with 10 additions and 1 deletions

7
src/types/email.ts Normal file
View File

@ -0,0 +1,7 @@
export class EmailBody {
subject: string;
to: string[];
cc: string[];
bcc: string[];
html: string;
}