Skip to content

Instantly share code, notes, and snippets.

@shaikh-shahid
Created April 6, 2016 11:43
Show Gist options
  • Save shaikh-shahid/d227480f0f080809eef6974b655c626f to your computer and use it in GitHub Desktop.
Save shaikh-shahid/d227480f0f080809eef6974b655c626f to your computer and use it in GitHub Desktop.
var async = require('async');
var emails = ["[email protected]","[email protected]"];
async.each(emails,function(singleEmail,callback) {
// Emailer code
// singleEmail will be one value at a time.
},function(err,data) {
// Once all done, comes here.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment