remove html length limit from emails
This commit is contained in:
@@ -3,5 +3,5 @@ import { z } from 'zod';
|
||||
export const emailSchema = z.object({
|
||||
to: z.string().email(),
|
||||
subject: z.string().min(1).max(200),
|
||||
html: z.string().min(1).max(5000),
|
||||
html: z.string().min(1),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user