fix(platformservice): Refactor module structure to update import paths and file organization

This commit is contained in:
2025-03-15 16:21:37 +00:00
parent 3d36d3d1c5
commit 8ddad6e652
22 changed files with 52 additions and 44 deletions

View File

@ -0,0 +1,13 @@
import * as plugins from '../plugins.js';
export class TemplateManager {
public smartmailDefault = new plugins.smartmail.Smartmail({
body: `
`,
from: `noreply@mail.lossless.com`,
subject: `{{subject}}`,
});
public createSmartmailFromData(tempalteTypeArg: plugins.lointEmail.TTemplates) {}
}