remove html length limit from emails

This commit is contained in:
Helena
2025-08-28 16:47:27 +03:00
parent 4588d11d5a
commit 5ee161f482

View File

@@ -3,5 +3,5 @@ import { z } from 'zod';
export const emailSchema = z.object({ export const emailSchema = z.object({
to: z.string().email(), to: z.string().email(),
subject: z.string().min(1).max(200), subject: z.string().min(1).max(200),
html: z.string().min(1).max(5000), html: z.string().min(1),
}); });