8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
export type SendEmailOptions = {
|
|
to: string[]
|
|
subject: string
|
|
text: string
|
|
|
|
fromDisplayName?: string
|
|
replyTo?: string
|
|
}
|