mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
export class SendEmail {
|
|
to: string;
|
|
subject: string;
|
|
body: string;
|
|
html?: string;
|
|
templateKey?: string;
|
|
context?: Record<string, unknown>;
|
|
}
|