14 lines
327 B
TypeScript
14 lines
327 B
TypeScript
import * as plugins from './email.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) {}
|
|
}
|