This commit is contained in:
Yurii
2026-06-16 16:27:19 +03:00
parent 15d657c931
commit 3cca78890a

View File

@@ -127,6 +127,15 @@ class EmailComposeRecordView extends EditRecordView {
});
}
/**
* @param {{
* body: string | null,
* isHtml: boolean,
* subject?: string | null,
* attachmentsIds?: string[],
* attachmentsNames?: Record<string, string>,
* }} data
*/
insertTemplate(data) {
let body = data.body;