Created
April 6, 2016 11:43
-
-
Save shaikh-shahid/d227480f0f080809eef6974b655c626f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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