This documentation provides examples for specific use cases. Please open an issue or make a pull request for any use cases you would like us to document here. Thank you!
- Table of Contents
- Attachments
- Kitchen Sink - an example with all settings used
- Send a Single Email to Multiple Recipients
- Send a Single Email to a Single Recipient
- Send Multiple Emails to Multiple Recipients
- Transactional Templates
- Legacy Transactional Templates
- Transient Fault Handling - RetryCount - MinimumBackOff - MaximumBackOff - DeltaBackOff
- How to Setup a Domain Whitelabel
- How to View Email Statistics
- How to transform HTML to plain text
- Send an Email With Twilio Email (Pilot)
- Send an SMS Message
using SendGrid;
using SendGrid.Helpers.Mail;
using System;
using System.Threading.Tasks;
using System.IO;
namespace Example
{
internal class Example
{
private static void Main()
{
ExecuteManualAttachmentAdd().Wait();
ExecuteStreamAttachmentAdd().Wait();
}
static async Task ExecuteManualAttachmentAdd()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var from = new EmailAddress("[email protected]");
var subject = "Subject";
var to = new EmailAddress("[email protected]");
var body = "Email Body";
var msg = MailHelper.CreateSingleEmail(from, to, subject, body, "");
var bytes = File.ReadAllBytes("C:\\Users\\username\\file.txt");
var file = Convert.ToBase64String(bytes);
msg.AddAttachment("file.txt", file);
var response = await client.SendEmailAsync(msg);
}
static async Task ExecuteStreamAttachmentAdd()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var from = new EmailAddress("[email protected]");
var subject = "Subject";
var to = new EmailAddress("[email protected]");
var body = "Email Body";
var msg = MailHelper.CreateSingleEmail(from, to, subject, body, "");
using (var fileStream = File.OpenRead("C:\\Users\\username\\file.txt"))
{
await msg.AddAttachmentAsync("file.txt", fileStream);
var response = await client.SendEmailAsync(msg);
}
}
}
}
using SendGrid;
using SendGrid.Helpers.Mail;
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var msg = new SendGridMessage();
// For a detailed description of each of these settings, please see the [documentation](https://sendgrid.com/docs/API_Reference/api_v3.html).
msg.AddTo(new EmailAddress("[email protected]", "Example User 1"));
var to_emails = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User2"),
new EmailAddress("[email protected]", "Example User3")
};
msg.AddTos(to_emails);
msg.AddCc(new EmailAddress("[email protected]", "Example User 4"));
var cc_emails = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User5"),
new EmailAddress("[email protected]", "Example User6")
};
msg.AddCcs(cc_emails);
msg.AddBcc(new EmailAddress("[email protected]", "Example User 7"));
var bcc_emails = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User8"),
new EmailAddress("[email protected]", "Example User9")
};
msg.AddBccs(bcc_emails);
msg.AddHeader("X-Test1", "Test1");
msg.AddHeader("X-Test2", "Test2");
var headers = new Dictionary<string, string>()
{
{ "X-Test3", "Test3" },
{ "X-Test4", "Test4" }
};
msg.AddHeaders(headers);
// If you require complex substitutions this [use case](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#transactional-templates).
var dynamicTemplateData = new ExampleTemplateData
{
Subject = "Hi!",
Name = "Example User",
Location = new Location
{
City = "Birmingham",
Country = "United Kingdom"
}
};
msg.SetTemplateData(dynamicTemplateData);
msg.AddCustomArg("marketing1", "false");
msg.AddCustomArg("transactional1", "true");
var customArgs = new Dictionary<string, string>()
{
{ "marketing2", "true" },
{ "transactional2", "false" }
};
msg.AddCustomArgs(customArgs);
msg.SetSendAt(1461775051);
// If you need to add more [Personalizations](https://sendgrid.com/docs/Classroom/Send/v3_Mail_Send/personalizations.html), here is an example of adding another Personalization by passing in a personalization index
msg.AddTo(new EmailAddress("[email protected]", "Example User 10"), 1);
var to_emails1 = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User11"),
new EmailAddress("[email protected]", "Example User12")
};
msg.AddTos(to_emails1, 1);
msg.AddCc(new EmailAddress("[email protected]", "Example User 13"), 1);
var cc_emails1 = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User14"),
new EmailAddress("[email protected]", "Example User15")
};
msg.AddCcs(cc_emails1, 1);
msg.AddBcc(new EmailAddress("[email protected]", "Example User 16"), 1);
var bcc_emails1 = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User17"),
new EmailAddress("[email protected]", "Example User18")
};
msg.AddBccs(bcc_emails1, 1);
msg.AddHeader("X-Test5", "Test5", 1);
msg.AddHeader("X-Test6", "Test6", 1);
var headers1 = new Dictionary<string, string>()
{
{ "X-Test7", "Test7" },
{ "X-Test8", "Test8" }
};
msg.AddHeaders(headers1, 1);
// For a full transactional template example, please see this [use case](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#transactional-templates).
var dynamicTemplateData2 = new ExampleTemplateData
{
Subject = "Hi 2!",
Name = "Example User 2",
Location = new Location
{
City = "Birmingham 2",
Country = "United Kingdom 2"
}
};
msg.SetTemplateData(dynamicTemplateData2, 1);
msg.AddCustomArg("marketing3", "true", 1);
msg.AddCustomArg("transactional3", "false", 1);
var customArgs1 = new Dictionary<string, string>()
{
{ "marketing4", "false" },
{ "transactional4", "true" }
};
msg.AddCustomArgs(customArgs1, 1);
msg.SetSendAt(1461775052, 1);
// The values below this comment are global to entire message
msg.SetFrom("[email protected]", "Example User 0");
msg.SetSubject("this subject overrides the Global Subject");
msg.SetGlobalSubject("Sending with Twilio SendGrid is Fun");
msg.AddContent(MimeType.Text, "and easy to do anywhere, even with C#");
msg.AddContent(MimeType.Html, "<strong>and easy to do anywhere, even with C#</strong>");
var contents = new List<Content>()
{
new Content("text/calendar", "Party Time!!"),
new Content("text/calendar2", "Party Time2!!")
};
msg.AddContents(contents);
// For base64 encoding, see [`Convert.ToBase64String`](https://msdn.microsoft.com/en-us/library/system.convert.tobase64string(v=vs.110).aspx)
// For an example using an attachment, please see this [use case](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#attachments).
msg.AddAttachment("balance_001.pdf",
"base64 encoded string",
"application/pdf",
"attachment",
"Balance Sheet");
var attachments = new List<Attachment>()
{
new Attachment()
{
Content = "base64 encoded string",
Type = "image/png",
Filename = "banner.png",
Disposition = "inline",
ContentId = "Banner"
},
new Attachment()
{
Content = "base64 encoded string",
Type = "image/png",
Filename = "banner2.png",
Disposition = "inline",
ContentId = "Banner 2"
}
};
msg.AddAttachments(attachments);
// For a full transactional template example, please see this [use case](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#transactional-templates).
msg.SetTemplateId("d-d42b0eea09964d1ab957c18986c01828");
msg.AddGlobalHeader("X-Day", "Monday");
var globalHeaders = new Dictionary<string, string>
{
{ "X-Month", "January" },
{ "X-Year", "2017" }
};
msg.AddGlobalHeaders(globalHeaders);
msg.AddSection("%section1", "Substitution for Section 1 Tag");
var sections = new Dictionary<string, string>
{
{"%section2%", "Substitution for Section 2 Tag"},
{"%section3%", "Substitution for Section 3 Tag"}
};
msg.AddSections(sections);
msg.AddCategory("customer");
var categories = new List<string>
{
"vip",
"new_account"
};
msg.AddCategories(categories);
msg.AddGlobalCustomArg("campaign", "welcome");
var globalCustomArgs = new Dictionary<string, string>
{
{ "sequence2", "2" },
{ "sequence3", "3" }
};
msg.AddGlobalCustomArgs(globalCustomArgs);
msg.SetAsm(3, new List<int>() { 1, 4, 5 });
msg.SetGlobalSendAt(1461775051);
msg.SetIpPoolName("23");
// This must be a valid [batch ID](https://sendgrid.com/docs/API_Reference/SMTP_API/scheduling_parameters.html)
//msg.SetBatchId("some_batch_id");
msg.SetBccSetting(true, "[email protected]");
msg.SetBypassListManagement(true);
msg.SetFooterSetting(true, "Some Footer HTML", "Some Footer Text");
msg.SetSandBoxMode(true);
msg.SetSpamCheck(true, 1, "https://gotchya.example.com");
msg.SetClickTracking(true, false);
msg.SetOpenTracking(true, "Optional tag to replace with the open image in the body of the message");
msg.SetSubscriptionTracking(true,
"HTML to insert into the text / html portion of the message",
"text to insert into the text/plain portion of the message",
"substitution tag");
msg.SetGoogleAnalytics(true,
"some campaign",
"some content",
"some medium",
"some source",
"some term");
msg.SetReplyTo(new EmailAddress("[email protected]", "Reply To Me"));
var response = await client.SendEmailAsync(msg);
Console.WriteLine(msg.Serialize());
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Body.ReadAsStringAsync().Result);
Console.WriteLine(response.Headers);
Console.ReadLine();
}
}
}
using SendGrid;
using SendGrid.Helpers.Mail;
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var from = new EmailAddress("[email protected]", "Example User");
var tos = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User1"),
new EmailAddress("[email protected]", "Example User2"),
new EmailAddress("[email protected]", "Example User3")
};
var subject = "Sending with Twilio SendGrid is Fun";
var plainTextContent = "and easy to do anywhere, even with C#";
var htmlContent = "<strong>and easy to do anywhere, even with C#</strong>";
var showAllRecipients = false; // Set to true if you want the recipients to see each others email addresses
var msg = MailHelper.CreateSingleEmailToMultipleRecipients(from,
tos,
subject,
plainTextContent,
htmlContent,
showAllRecipients
);
var response = await client.SendEmailAsync(msg);
}
}
}
using SendGrid;
using SendGrid.Helpers.Mail;
using System;
using System.Threading.Tasks;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var from = new EmailAddress("[email protected]", "Example User");
var subject = "Sending with Twilio SendGrid is Fun";
var to = new EmailAddress("[email protected]", "Example User");
var plainTextContent = "and easy to do anywhere, even with C#";
var htmlContent = "<strong>and easy to do anywhere, even with C#</strong>";
var msg = MailHelper.CreateSingleEmail(from, to, subject, plainTextContent, htmlContent);
var response = await client.SendEmailAsync(msg);
}
}
}
using SendGrid;
using SendGrid.Helpers.Mail;
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var from = new EmailAddress("[email protected]", "Example User");
var tos = new List<EmailAddress>
{
new EmailAddress("[email protected]", "Example User1"),
new EmailAddress("[email protected]", "Example User2"),
new EmailAddress("[email protected]", "Example User3")
};
var subjects = new List<string> { "Test Subject1", "Test Subject2", "Test Subject3" };
var plainTextContent = "Hello -name-";
var htmlContent = "Goodbye -name-";
var substitutions = new List<Dictionary<string, string>>
{
new Dictionary<string, string>() {{"-name-", "Name1"}},
new Dictionary<string, string>() {{"-name-", "Name2"}},
new Dictionary<string, string>() {{"-name-", "Name3"}}
};
var msg = MailHelper.CreateMultipleEmailsToMultipleRecipients(from,
tos,
subjects,
plainTextContent,
htmlContent,
substitutions
);
var response = await client.SendEmailAsync(msg);
}
}
}
For this example, we assume you have created a transactional template. Following is the template content we used for testing.
Template ID (replace with your own):
d-d42b0eea09964d1ab957c18986c01828
Email Subject:
Dynamic Subject: {{subject}}
Template Body:
<html>
<head>
<title></title>
</head>
<body>
Hello {{name}},
<br /><br/>
I'm glad you are trying out the dynamic template feature!
<br /><br/>
I hope you are having a great day in {{location.city}} :)
<br /><br/>
</body>
</html>
using Newtonsoft.Json;
using SendGrid;
using SendGrid.Helpers.Mail;
using System.Threading.Tasks;
using System;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var msg = new SendGridMessage();
msg.SetFrom(new EmailAddress("[email protected]", "Example User"));
msg.AddTo(new EmailAddress("[email protected]", "Example User"));
msg.SetTemplateId("d-d42b0eea09964d1ab957c18986c01828");
var dynamicTemplateData = new ExampleTemplateData
{
Subject = "Hi!",
Name = "Example User",
Location = new Location
{
City = "Birmingham",
Country = "United Kingdom"
}
};
msg.SetTemplateData(dynamicTemplateData);
var response = await client.SendEmailAsync(msg);
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Headers.ToString());
Console.WriteLine("\n\nPress any key to exit.");
Console.ReadLine();
}
private class ExampleTemplateData
{
[JsonProperty("subject")]
public string Subject { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("location")]
public Location Location { get; set; }
}
private class Location
{
[JsonProperty("city")]
public string City { get; set; }
[JsonProperty("country")]
public string Country { get; set; }
}
}
}
Methods also exist on MailHelper
to create dynamic template emails:
CreateSingleTemplateEmail
CreateSingleTemplateEmailToMultipleRecipients
CreateMultipleTemplateEmailsToMultipleRecipients
using Newtonsoft.Json;
using System.Threading.Tasks;
using System;
using SendGrid;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
string data = @"{
'personalizations': [
{
'to': [
{
'email': '[email protected]'
}
],
'dynamic_template_data': {
'subject': 'Hi!',
'name': 'Example User',
'location': {
'city': 'Birmingham',
'country': 'United Kingdom'
}
}
}
],
'from': {
'email': '[email protected]'
},
'template_id': 'd-d42b0eea09964d1ab957c18986c01828'
}";
var json = JsonConvert.DeserializeObject<Object>(data);
var response = await client.RequestAsync(method: SendGridClient.Method.POST,
requestBody: json.ToString(),
urlPath: "mail/send");
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Headers.ToString());
Console.WriteLine("\n\nPress any key to exit.");
Console.ReadLine();
}
}
}
For this example, we assume you have created a legacy transactional template in the UI or via the API.. Following is the template content we used for testing.
Template ID (replace with your own):
13b8f94f-bcae-4ec6-b752-70d6cb59f932
Email Subject:
<%subject%>
Template Body:
<html>
<head>
<title></title>
</head>
<body>
Hello -name-,
<br /><br/>
I'm glad you are trying out the template feature!
<br /><br/>
<%body%>
<br /><br/>
I hope you are having a great day in -city- :)
<br /><br/>
</body>
</html>
using SendGrid;
using SendGrid.Helpers.Mail;
using System.Threading.Tasks;
using System;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
var msg = new SendGridMessage();
msg.SetFrom(new EmailAddress("[email protected]", "Example User"));
msg.SetSubject("I'm replacing the subject tag");
msg.AddTo(new EmailAddress("[email protected]", "Example User"));
msg.AddContent(MimeType.Text, "I'm replacing the <strong>body tag</strong>");
msg.SetTemplateId("13b8f94f-bcae-4ec6-b752-70d6cb59f932");
msg.AddSubstitution("-name-", "Example User");
msg.AddSubstitution("-city-", "Denver");
var response = await client.SendEmailAsync(msg);
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Headers.ToString());
Console.WriteLine("\n\nPress any key to exit.");
Console.ReadLine();
}
}
}
using Newtonsoft.Json;
using System.Threading.Tasks;
using System;
using SendGrid;
namespace Example
{
internal class Example
{
private static void Main()
{
Execute().Wait();
}
static async Task Execute()
{
var apiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY");
var client = new SendGridClient(apiKey);
string data = @"{
'personalizations': [
{
'to': [
{
'email': '[email protected]'
}
],
'substitutions': {
'-name-': 'Example User',
'-city-': 'Denver'
},
'subject': 'I\'m replacing the subject tag'
}
],
'from': {
'email': '[email protected]'
},
'content': [
{
'type': 'text/html',
'value': 'I\'m replacing the <strong>body tag</strong>'
}
],
'template_id': '13b8f94f-bcae-4ec6-b752-70d6cb59f932'
}";
var json = JsonConvert.DeserializeObject<Object>(data);
var response = await client.RequestAsync(method: SendGridClient.Method.POST,
requestBody: json.ToString(),
urlPath: "mail/send");
Console.WriteLine(response.StatusCode);
Console.WriteLine(response.Headers.ToString());
Console.WriteLine("\n\nPress any key to exit.");
Console.ReadLine();
}
}
}
The SendGridClient provides functionality for handling transient errors that might occur when sending an HttpRequest. This includes client side timeouts while sending the mail, or certain errors returned within the 500 range. Errors within the 500 range are limited to 500 Internal Server Error, 502 Bad Gateway, 503 Service unavailable and 504 Gateway timeout.
By default, retry behaviour is off, you must explicitly enable it by setting the retry count to a value greater than zero. To set the retry count, you must use the SendGridClient construct that takes a SendGridClientOptions object, allowing you to configure the ReliabilitySettings
The amount of times to retry the operation before reporting an exception to the caller. This is in addition to the initial attempt so setting a value of 1 would result in 2 attempts, the initial attempt and the retry. Defaults to zero, retry behaviour is not enabled. The maximum amount of retries permitted is 5.
The minimum amount of time to wait between retries.
The maximum possible amount of time to wait between retries. The maximum value allowed is 30 seconds
The value that will be used to calculate a random delta in the exponential delay between retries. A random element of time is factored into the delta calculation as this helps avoid many clients retrying at regular intervals.
In this example we are setting RetryCount to 2, with a minimum wait time of 1 seconds, a maximum of 10 seconds and a delta of 3 seconds
var options = new SendGridClientOptions
{
ApiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY"),
ReliabilitySettings = new ReliabilitySettings(2, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(3))
};
var client = new SendGridClient(options);
The SendGridClientOptions object defines all the settings that can be set for the client, e.g.
var options = new SendGridClientOptions
{
ApiKey = Environment.GetEnvironmentVariable("NAME_OF_THE_ENVIRONMENT_VARIABLE_FOR_YOUR_SENDGRID_KEY"),
ReliabilitySettings = new ReliabilitySettings(2, TimeSpan.FromSeconds(1), TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(3)),
Host = "Your-Host",
UrlPath = "Url-Path",
Version = "3",
RequestHeaders = new Dictionary<string, string>() {{"header-key", "header-value"}}
};
var client = new SendGridClient(options);
You can find documentation for how to setup a domain whitelabel via the UI here and via API here.
Find more information about all of SendGrid's whitelabeling related documentation here.
You can find documentation for how to view your email statistics via the UI here and via API here.
Alternatively, we can post events to a URL of your choice via our Event Webhook about events that occur as Twilio SendGrid processes your email.
Although the HTML tags could be removed using regular expressions, the best solution is parsing the HTML code with a specific library, such as HTMLAgilityPack.
The following code shows how to parse an input string with HTML code and remove all tags:
using HtmlAgilityPack;
namespace Example {
internal class Example
{
/// <summary>
/// Convert the HTML content to plain text
/// </summary>
/// <param name="html">The html content which is going to be converted</param>
/// <returns>A string</returns>
public static string HtmlToPlainText(string html)
{
HtmlDocument document = new HtmlDocument();
document.LoadHtml(html);
return document.DocumentNode == null ? string.Empty : document.DocumentNode.InnerText;
}
}
}
Sign up for a free Twilio account here.
The Twilio API allows for authentication using with either an API key/secret or your Account SID/Auth Token. You can create an API key here or obtain your Account SID and Auth Token here.
Once you have those, follow the steps below based on your operating system.
echo "export TWILIO_API_KEY='YOUR_TWILIO_API_KEY'" > twilio.env
echo "export TWILIO_API_SECRET='YOUR_TWILIO_API_SECRET'" >> twilio.env
# or
echo "export TWILIO_ACCOUNT_SID='YOUR_TWILIO_ACCOUNT_SID'" > twilio.env
echo "export TWILIO_AUTH_TOKEN='YOUR_TWILIO_AUTH_TOKEN'" >> twilio.env
Then:
echo "twilio.env" >> .gitignore
source ./twilio.env
Temporarily set the environment variable (accessible only during the current CLI session):
set TWILIO_API_KEY=YOUR_TWILIO_API_KEY
set TWILIO_API_SECRET=YOUR_TWILIO_API_SECRET
: or
set TWILIO_ACCOUNT_SID=YOUR_TWILIO_ACCOUNT_SID
set TWILIO_AUTH_TOKEN=YOUR_TWILIO_AUTH_TOKEN
Or permanently set the environment variable (accessible in all subsequent CLI sessions):
setx TWILIO_API_KEY "YOUR_TWILIO_API_KEY"
setx TWILIO_API_SECRET "YOUR_TWILIO_API_SECRET"
: or
setx TWILIO_ACCOUNT_SID "YOUR_TWILIO_ACCOUNT_SID"
setx TWILIO_AUTH_TOKEN "YOUR_TWILIO_AUTH_TOKEN"
var mailClient = new TwilioEmailClient(Environment.GetEnvironmentVariable("TWILIO_API_KEY"), Environment.GetEnvironmentVariable("TWILIO_API_SECRET"));
// or
var mailClient = new TwilioEmailClient(Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID"), Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN"));
This client has the same interface as the SendGrid
client.
First, follow the above steps for creating a Twilio account and setting up environment variables with the proper credentials.
Then, install the Twilio Helper Library by following the installation steps.
Finally, send a message.
using System;
using Twilio;
using Twilio.Rest.Api.V2010.Account;
using Twilio.Types;
namespace TwilioTest
{
class Program
{
static void Main(string[] args)
{
var twilioAccountSid = Environment.GetEnvironmentVariable("TWILIO_ACCOUNT_SID");
var twilioAuthToken = Environment.GetEnvironmentVariable("TWILIO_AUTH_TOKEN");
TwilioClient.Init(twilioAccountSid, twilioAuthToken);
var message = MessageResource.Create(
new PhoneNumber("+11234567890"),
from: new PhoneNumber("+10987654321"),
body: "Hello World!"
);
Console.WriteLine(message.Sid);
}
}
}