mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-26 07:57:17 +00:00
9 lines
141 B
TypeScript
9 lines
141 B
TypeScript
|
|
export interface EmailOptions {
|
||
|
|
to: string[];
|
||
|
|
from: string;
|
||
|
|
subject: string;
|
||
|
|
text: string;
|
||
|
|
html?: string;
|
||
|
|
isMultiple: boolean;
|
||
|
|
}
|