PeerTube/shared/models/server/emailer.model.ts

9 lines
130 B
TypeScript
Raw Normal View History

2020-04-23 07:32:53 +00:00
export type SendEmailOptions = {
to: string[]
subject: string
text: string
fromDisplayName?: string
replyTo?: string
}