summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrandon West <brawest@gmail.com>2014-05-13 08:08:06 -0600
committerBrandon West <brawest@gmail.com>2014-05-13 08:08:06 -0600
commit2dcfcb14adced98a2ff56adcd8c8767c96c3572a (patch)
treef20b653d1640c9c383b4f0d0fb7da262ed53d1f2
parentddbdf03600227f4570af96a98ffd67d33d8b9743 (diff)
downloadsendgrid-csharp-2dcfcb14adced98a2ff56adcd8c8767c96c3572a.zip
sendgrid-csharp-2dcfcb14adced98a2ff56adcd8c8767c96c3572a.tar.gz
sendgrid-csharp-2dcfcb14adced98a2ff56adcd8c8767c96c3572a.tar.bz2
Update README.md
remove InitializeFilters()
-rwxr-xr-xREADME.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/README.md b/README.md
index ae85290..fdd2c27 100755
--- a/README.md
+++ b/README.md
@@ -131,7 +131,6 @@ myMessage.From = new MailAddress("john@example.com", "John Smith");
myMessage.Subject = "Testing the SendGrid Library";
myMessage.Text = "Hello World!";
-myMessage.InitializeFilters();
// Add a footer to the message.
myMessage.EnableFooter("PLAIN TEXT FOOTER", "<p><em>HTML FOOTER</em></p>");
```
@@ -146,7 +145,6 @@ myMessage.Subject = "Testing the SendGrid Library";
myMessage.Html = "<p><a href=\"http://www.example.com\">Hello World Link!</a></p>";
myMessage.Text = "Hello World!";
-myMessage.InitializeFilters();
// true indicates that links in plain text portions of the email
// should also be overwritten for link tracking purposes.
myMessage.EnableClickTracking(true);