このライブラリはV2 APIをサポートしませんが、旧バージョンのライブラリを利用することでV2 APIを利用可能です。詳細については Continue Using V2 in C#を参照してください。
SendGrid C#ライブラリの利用
123456789101112131415
// using SendGrid's C# Library - https://github.com/sendgrid/sendgrid-csharpusingSystem.Net.Http;usingSystem.Net.Mail;varmyMessage=newSendGrid.SendGridMessage();myMessage.AddTo("test@sendgrid.com");myMessage.From=newEmailAddress("you@youremail.com","First Last");myMessage.Subject="Sending with SendGrid is Fun";myMessage.PlainTextContent="and easy to do anywhere, even with C#";vartransportWeb=newSendGrid.Web("SENDGRID_APIKEY");transportWeb.DeliverAsync(myMessage);// NOTE: If you're developing a Console Application,// use the following so that the API call has time to complete// transportWeb.DeliverAsync(myMessage).Wait();