email-templates-effe
Email-templates-effe is an alternative engine for email-templates and add support for Foundation for Emails ✉️📫🚀
Dependencies
- Node.js (requires Angular 6 or higher, tested with v6, v8, v9 and v10)
Installing
install email-templates-effe
via npm:
npm install email-templates-effe --save
Or via yarn
yarn add email-templates-effe
Usage
Once installed you need to import the module and set up the root directory for handlebars:
const Email = ;const path = ;const engine = ; // Setupconst email = views: root: path options: extension: 'hbs' engineSource: ; // Using email engine:email ; ;
Or you can define all handlebars directory manually with layouts
, partials
and helpers
// ...Other Code // Setupconst email = views: root: path options: extension: 'hbs' engineSource: ; // ...Other Code
Configuration
configuration option | type | default | description |
---|---|---|---|
root | string | - | With root you can define root directory for handlebars with layouts , partials and partials as suborders. |
layouts | string | - | With layouts you can define an exact handlebars layouts path |
partials | string | - | With partials you can define an exact handlebars partials path |
partials | string | - | With partials you can define an exact handlebars partials path |
Development
For the development you need Node.js v6 or higher. If you have Node.js installed you can use the following commands to run the test
Using npm:
npm installnpm run test:lint // Run lint test in watchnpm run test:watch // Run unit test in watch mode
or use yarn (yarn must be installed since it is not part of node.js.):
yarn installyarn run test:lint // Run lint test in watchyarn run test:watch // Run unit test in watch mode
Built With
- bluebird - Good and fast promise library
- cheerio - It's like jQuery for Server
- front-matter - Extract meta data from documents.
- glob - Match files using the patterns used by the shell
- handlebars - Handlebars is a template engine
- inky - Inky is a template engine for Foundation for Emails tags
- lodash - A helper library
- strip-bom - Strip UTF-8 byte order mark (BOM) from a string
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Nico Swiatecki - Initial work - Snics
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE file for details