Skip to content

Instantly share code, notes, and snippets.

@sendgrid-gists
Last active May 11, 2016 17:47
Show Gist options
  • Save sendgrid-gists/ec3b52174f6873cb883619d1de3518f9 to your computer and use it in GitHub Desktop.
Save sendgrid-gists/ec3b52174f6873cb883619d1de3518f9 to your computer and use it in GitHub Desktop.
"Hello World" for email, using SendGrid with Java.
// using SendGrid's Java Library
// https://github.com/sendgrid/sendgrid-java
import com.sendgrid.*;
public class SendGridExample {
public static void main(String[] args) {
SendGrid sendgrid = new SendGrid(SENDGRID_APIKEY);
SendGrid.Email 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 Java");
SendGrid.Response response = sendgrid.send(email);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment