https://github.com/codeforgeek/mass-mailer-nodejs
Demonstration of Async programming using Node.js
https://github.com/codeforgeek/mass-mailer-nodejs
Last synced: about 1 year ago
JSON representation
Demonstration of Async programming using Node.js
- Host: GitHub
- URL: https://github.com/codeforgeek/mass-mailer-nodejs
- Owner: codeforgeek
- Created: 2015-04-19T09:59:24.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-01-22T06:51:09.000Z (over 10 years ago)
- Last Synced: 2025-04-01T19:59:41.701Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://codeforgeek.com/nodejs-async-tutorial/
- Size: 1.37 MB
- Stars: 26
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Mass Mailer using Async
This script demonstrate use of Async package to build Mass Mailer which can send email to 1000's of user in parallel way.
### How to run
* Clone the script or download one.
* Type ```npm install``` if dependencies is not present.
* Run by using ```node Server.js``` and you should see following output.

### Explanation:
Script takes the email from array and execute email sending operation at once. So for more than 1 user it will send email to them at once. Once email is sent, it will update DB and return back to parent caller once done.

### Links & website :
Find tutorial here (http://codeforgeek.com/2015/04/nodejs-async-tutorial/).