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