Skip to content

Instantly share code, notes, and snippets.

@xissburg
Created March 1, 2015 16:05
Show Gist options
  • Save xissburg/d1f5723f28eaf3730995 to your computer and use it in GitHub Desktop.
Save xissburg/d1f5723f28eaf3730995 to your computer and use it in GitHub Desktop.
query.each(function(result) {
console.log("Sending email to " + result.get("email"));
return SendGrid.sendEmail({
...
})
}).then(function() {
status.success("SUccess.");
}, function(error) {
status.error("Got an error: " + error.code + ", " + error.message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment