summaryrefslogtreecommitdiffstats
path: root/SendGrid/Example/Program.cs
diff options
context:
space:
mode:
authorBrandon West <brawest@gmail.com>2014-05-21 18:22:30 -0600
committerBrandon West <brawest@gmail.com>2014-05-21 18:22:30 -0600
commit1b755d1304c9198a5970a79cee223bf343bdf67c (patch)
treea0791633516734efef84ecbf30c2442b0b7f87f6 /SendGrid/Example/Program.cs
parente6a8e1133ed56a78e6dd3c8147249100121602ca (diff)
downloadsendgrid-csharp-1b755d1304c9198a5970a79cee223bf343bdf67c.zip
sendgrid-csharp-1b755d1304c9198a5970a79cee223bf343bdf67c.tar.gz
sendgrid-csharp-1b755d1304c9198a5970a79cee223bf343bdf67c.tar.bz2
fix some copypasta
Diffstat (limited to 'SendGrid/Example/Program.cs')
-rw-r--r--SendGrid/Example/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs
index 9aaa8ec..9da69f5 100644
--- a/SendGrid/Example/Program.cs
+++ b/SendGrid/Example/Program.cs
@@ -14,7 +14,7 @@ namespace Example
var myMessage = new SendGridMessage();
myMessage.AddTo("anna@example.com");
myMessage.From = new MailAddress("john@example.com", "John Smith");
- myMessage.Subject = "Testing the SendGridMessage Library";
+ myMessage.Subject = "Testing the SendGrid Library";
myMessage.Text = "Hello World!";
// Create credentials, specifying your user name and password.