1.1.0 • Published 6 years ago

@dealerslink/node-mail-template-helper v1.1.0

Weekly downloads
-
License
-
Repository
-
Last release
6 years ago

node-mail-template-helper

node-mail-template-helper is a helper module to assist with compilation of email templates.

Installation

npm install @dealerslink/node-mail-template-helper

Usage

const MailTemplatesHelper = require('@dealerslink/node-mail-template-helper');

const templates = {
  ['Test2']: {
    subject: '{testData1} {testData2}',
    template: '{bodyData} - {testData2} -- {embedded.value}'
  }
};

const mailTemplateHelper = new MailTemplatesHelper(templates);

See wiki for more details.