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