]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/server/emailer.model.ts
Add ability for auth plugins to hook tokens validity
[github/Chocobozzz/PeerTube.git] / shared / models / server / emailer.model.ts
1 export type SendEmailOptions = {
2 to: string[]
3 subject: string
4 text: string
5
6 fromDisplayName?: string
7 replyTo?: string
8 }