]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/server/emailer.model.ts
Support progress for ffmpeg tasks
[github/Chocobozzz/PeerTube.git] / shared / models / server / 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 }