├── .env_sample ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── examples ├── send-welcome-email.js ├── templates │ ├── hello.html │ ├── hello.txt │ ├── welcome.html │ └── welcome.txt └── try-handlebars.js ├── lib └── index.js ├── package.json └── test └── index.test.js /.env_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/.env_sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/README.md -------------------------------------------------------------------------------- /examples/send-welcome-email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/examples/send-welcome-email.js -------------------------------------------------------------------------------- /examples/templates/hello.html: -------------------------------------------------------------------------------- 1 |
Hello {{name}}!
2 | -------------------------------------------------------------------------------- /examples/templates/hello.txt: -------------------------------------------------------------------------------- 1 | Hello {{name}}! 2 | -------------------------------------------------------------------------------- /examples/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/examples/templates/welcome.html -------------------------------------------------------------------------------- /examples/templates/welcome.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/examples/templates/welcome.txt -------------------------------------------------------------------------------- /examples/try-handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/examples/try-handlebars.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/package.json -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwyl/sendemail/HEAD/test/index.test.js --------------------------------------------------------------------------------