]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - emailer.model.ts
069ef0bab5253e1d4fc0a1e95a98ee1fe385ffea
[github/Chocobozzz/PeerTube.git] / emailer.model.ts
1 export type SendEmailOptions = {
2 to: string[]
3
4 template?: string
5 locals?: { [key: string]: any }
6
7 // override defaults
8 subject?: string
9 text?: string
10 from?: string | { name?: string, address: string }
11 replyTo?: string
12 }