mailer/types.ts

15 lines
239 B
TypeScript

import type { JSX } from 'preact'
import { Contact } from './src/contact.ts'
export type Mail = {
from: Contact
to: Contact[]
subject: string
body: JSX.Element
options: {
cc: Contact[]
cci: Contact[]
attachments: string[]
}
}