├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── .yarn └── releases │ └── yarn-1.22.22.cjs ├── .yarnrc ├── README.md ├── index.js ├── lib ├── generator.js └── index.js ├── package.json ├── test ├── tests │ └── index.js └── views │ ├── email.handlebars │ ├── partials │ └── header.handlebars │ ├── text.handlebars │ └── with_partial.handlebars └── yarn.lock /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.17.0 2 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.yarn/releases/yarn-1.22.22.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/.yarn/releases/yarn-1.22.22.cjs -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/.yarnrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/index.js -------------------------------------------------------------------------------- /lib/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/lib/generator.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/package.json -------------------------------------------------------------------------------- /test/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/test/tests/index.js -------------------------------------------------------------------------------- /test/views/email.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/test/views/email.handlebars -------------------------------------------------------------------------------- /test/views/partials/header.handlebars: -------------------------------------------------------------------------------- 1 |

Header

2 | -------------------------------------------------------------------------------- /test/views/text.handlebars: -------------------------------------------------------------------------------- 1 | Text email 2 | {{name}} 3 | -------------------------------------------------------------------------------- /test/views/with_partial.handlebars: -------------------------------------------------------------------------------- 1 | {{> header}} 2 | Email content 3 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yads/nodemailer-express-handlebars/HEAD/yarn.lock --------------------------------------------------------------------------------