https://github.com/toilal/mailer-webservice
Send emails with a micro webservice based on nodemailer
https://github.com/toilal/mailer-webservice
Last synced: about 1 year ago
JSON representation
Send emails with a micro webservice based on nodemailer
- Host: GitHub
- URL: https://github.com/toilal/mailer-webservice
- Owner: Toilal
- License: mit
- Created: 2015-03-24T15:05:28.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-25T16:37:40.000Z (about 11 years ago)
- Last Synced: 2024-04-14T01:11:09.173Z (about 2 years ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Mailer Webservice
=================
A Microservice that sends email from `application/json` and `x-www-form-urlencoded` POST.
Powered by:
- [Node.JS](https://nodejs.org/) and [ExpressJS](http://expressjs.com/) for serving.
- [nodemailer](http://www.nodemailer.com/) for email sending.
- [consolidate](https://github.com/tj/consolidate.js) for templating.
It supports [reCaptcha](https://www.google.com/recaptcha) natively.
Install
-------
```
npm install -g mailer-webservice
```
Configure
---------
Create `mailer-webservice.json` configuration file. An example is available in `example` directory.
Run
---
```
mailer-webservice
```
Send from HTML Form
-------------------
*To Be Done*