mailer/types.ts

15 lines
244 B
TypeScript
Raw Normal View History

2024-03-28 22:32:46 +01:00
import type { JSX } from 'preact'
2024-03-29 16:37:35 +01:00
import type { Contact } from './src/contact.ts'
2024-03-28 22:32:46 +01:00
export type Mail = {
from: Contact
2024-03-28 22:32:46 +01:00
to: Contact[]
subject: string
body: JSX.Element
2024-03-29 16:35:20 +01:00
options: {
cc: Contact[]
cci: Contact[]
attachments: string[]
}
2024-03-28 22:32:46 +01:00
}