Skip to content

Instantly share code, notes, and snippets.

@sendgrid-gists
Last active May 11, 2016 17:47
Show Gist options
  • Save sendgrid-gists/6cb4e8c51d967013d399a50f7db9381e to your computer and use it in GitHub Desktop.
Save sendgrid-gists/6cb4e8c51d967013d399a50f7db9381e to your computer and use it in GitHub Desktop.
"Hello World" for email, using SendGrid with C#.
// using SendGrid's C# Library
// https://github.com/sendgrid/sendgrid-csharp
using System.Net.Http;
using System.Net.Mail;
var myMessage = new SendGrid.SendGridMessage();
myMessage.AddTo("test@sendgrid.com");
myMessage.From = new MailAddress("you@youremail.com", "First Last");
myMessage.Subject = "Sending with SendGrid is Fun";
myMessage.Text = "and easy to do anywhere, even with C#";
var transportWeb = new SendGrid.Web("SENDGRID_APIKEY");
transportWeb.Deliver(myMessage).Wait();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment