mirror of
https://github.com/docmost/docmost.git
synced 2026-07-14 12:06:45 +10:00
05b3c65b0f
* feat: notifications * feat: watchers * improvements * handle page move for watchers * make watchers non-blocking * more
10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
export interface MailMessage {
|
|
from?: string;
|
|
to: string;
|
|
subject: string;
|
|
text?: string;
|
|
html?: string;
|
|
template?: any;
|
|
notificationId?: string;
|
|
}
|