render html emails

This commit is contained in:
Arjun 2026-05-13 14:08:50 +05:30
parent 0c9707a5ee
commit 64976a9f5f
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>;