summaryrefslogtreecommitdiffstats
path: root/SendGrid/Example
diff options
context:
space:
mode:
Diffstat (limited to 'SendGrid/Example')
-rwxr-xr-xSendGrid/Example/Program.cs1
-rwxr-xr-xSendGrid/Example/SMTPAPI.cs1
-rwxr-xr-xSendGrid/Example/WEBAPI.cs1
3 files changed, 1 insertions, 2 deletions
diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs
index 1debf2e..29b02e6 100755
--- a/SendGrid/Example/Program.cs
+++ b/SendGrid/Example/Program.cs
@@ -30,6 +30,7 @@ namespace Example
//use this section to test out our Web and SMTP examples!
smtpapi.SimpleHTMLEmail();
+ restapi.SimpleHTMLEmail();
Console.WriteLine("Done!");
Console.ReadLine();
diff --git a/SendGrid/Example/SMTPAPI.cs b/SendGrid/Example/SMTPAPI.cs
index d9ab154..28120d3 100755
--- a/SendGrid/Example/SMTPAPI.cs
+++ b/SendGrid/Example/SMTPAPI.cs
@@ -246,7 +246,6 @@ namespace Example
message.From = new MailAddress(_from);
//set the message body
- var timestamp = DateTime.Now.ToString("HH:mm:ss tt");
message.Html = "This is the HTML body";
message.Text = "This is the plain text body";
diff --git a/SendGrid/Example/WEBAPI.cs b/SendGrid/Example/WEBAPI.cs
index 985005d..d3f8d4a 100755
--- a/SendGrid/Example/WEBAPI.cs
+++ b/SendGrid/Example/WEBAPI.cs
@@ -247,7 +247,6 @@ namespace Example
message.From = new MailAddress(_from);
//set the message body
- var timestamp = DateTime.Now.ToString("HH:mm:ss tt");
message.Html = "This is the HTML body";
message.Text = "This is the plain text body";