summaryrefslogtreecommitdiffstats
path: root/SendGrid/Example/SMTPAPI.cs
diff options
context:
space:
mode:
authorCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-13 11:42:23 -0800
committerCJ Buchmann <cj.buchmann@sendgrid.com>2012-01-13 11:42:23 -0800
commit37cee6093cb660ad3a077d4d3f781fca3d02e1b5 (patch)
treeb1ba83354b7ae71123e16418024a1c5898ff1d31 /SendGrid/Example/SMTPAPI.cs
parentf9a9711650d1990d10bb24b1591a274677bf88f2 (diff)
parenta6956d4a0014845b14f1909cb8a01fdc832d6cd3 (diff)
downloadsendgrid-csharp-37cee6093cb660ad3a077d4d3f781fca3d02e1b5.zip
sendgrid-csharp-37cee6093cb660ad3a077d4d3f781fca3d02e1b5.tar.gz
sendgrid-csharp-37cee6093cb660ad3a077d4d3f781fca3d02e1b5.tar.bz2
Merge branch 'us1882' of github.com:sendgrid/sendgrid-csharp into us1882-inbetween
Conflicts: SendGrid/SendGridMail/Transport/REST.cs
Diffstat (limited to 'SendGrid/Example/SMTPAPI.cs')
-rwxr-xr-xSendGrid/Example/SMTPAPI.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/SendGrid/Example/SMTPAPI.cs b/SendGrid/Example/SMTPAPI.cs
index 6ed10cb..2ee8927 100755
--- a/SendGrid/Example/SMTPAPI.cs
+++ b/SendGrid/Example/SMTPAPI.cs
@@ -25,7 +25,7 @@ namespace Example
public void SimpleHTMLEmail()
{
//create a new message object
- var message = new SendGrid(new Header());
+ var message = SendGrid.GenerateInstance();
//set the message recipients
foreach(string recipient in _to)
@@ -52,7 +52,7 @@ namespace Example
public void SimplePlaintextEmail()
{
//create a new message object
- var message = new SendGrid(new Header());
+ var message = SendGrid.GenerateInstance();
//set the message recipients
foreach(string recipient in _to)
@@ -80,7 +80,7 @@ namespace Example
{
var header = new Header();
//create a new message object
- var message = new SendGrid(header);
+ var message = SendGrid.GenerateInstance();
//set the message recipients
foreach (string recipient in _to)
@@ -114,7 +114,7 @@ namespace Example
{
var header = new Header();
//create a new message object
- var message = new SendGrid(header);
+ var message = SendGrid.GenerateInstance();
//set the message recipients
foreach (string recipient in _to)