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

13 lines
236 B
TypeScript
Raw Normal View History

2020-04-23 09:32:53 +02:00
export type SendEmailOptions = {
to: string[]
template?: string
locals?: { [key: string]: any }
// override defaults
subject?: string
text?: string
from?: string | { name?: string, address: string }
2020-04-23 09:32:53 +02:00
replyTo?: string
}