import { z } from "zod"; export const SendMailSchema = z.object({ to: z.string(), subject: z.string(), body: z.string() });