render html emails

This commit is contained in:
Arjun 2026-05-13 14:08:50 +05:30
parent 78351da01b
commit 8a98f3501e
4 changed files with 186 additions and 31 deletions

View file

@ -110,6 +110,7 @@ export const GmailThreadMessageSchema = z.object({
date: z.string().optional(),
subject: z.string().optional(),
body: z.string().optional(),
bodyHtml: z.string().optional(),
});
export type GmailThreadMessage = z.infer<typeof GmailThreadMessageSchema>;