Files
myeasycms-v2/packages/mailers/src/mailer-schema.ts
giancarlo bce3479368 Cleanup
2024-03-24 02:23:22 +08:00

19 lines
297 B
TypeScript

import { z } from 'zod';
export const MailerSchema = z
.object({
to: z.string().email(),
from: z.string().email(),
subject: z.string(),
})
.and(
z.union([
z.object({
text: z.string(),
}),
z.object({
html: z.string(),
}),
]),
);