Files
docmost/apps/server/src/integrations/mail/interfaces/mail.message.ts
T
Philip Okugbe 05b3c65b0f feat: notifications (#1947)
* feat: notifications
* feat: watchers

* improvements

* handle page move for watchers

* make watchers non-blocking

* more
2026-02-14 20:00:38 -08:00

10 lines
162 B
TypeScript

export interface MailMessage {
from?: string;
to: string;
subject: string;
text?: string;
html?: string;
template?: any;
notificationId?: string;
}