Skip to content

Instantly share code, notes, and snippets.

@sendgrid-gists
Last active May 11, 2016 17:44
Show Gist options
  • Save sendgrid-gists/be72bd3e63d267a8e1e2c516067cd7b8 to your computer and use it in GitHub Desktop.
Save sendgrid-gists/be72bd3e63d267a8e1e2c516067cd7b8 to your computer and use it in GitHub Desktop.
"Hello World" for email, using SendGrid with Node.js.
// using SendGrid's Node.js Library
// https://github.com/sendgrid/sendgrid-nodejs
var sendgrid = require("sendgrid")("SENDGRID_APIKEY");
var email = new sendgrid.Email();
email.addTo("test@sendgrid.com");
email.setFrom("you@youremail.com");
email.setSubject("Sending with SendGrid is Fun");
email.setHtml("and easy to do anywhere, even with Node.js");
sendgrid.send(email);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment