diff options
author | Brandon West <brawest@gmail.com> | 2014-05-13 08:08:06 -0600 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-05-13 08:08:06 -0600 |
commit | 2dcfcb14adced98a2ff56adcd8c8767c96c3572a (patch) | |
tree | f20b653d1640c9c383b4f0d0fb7da262ed53d1f2 | |
parent | ddbdf03600227f4570af96a98ffd67d33d8b9743 (diff) | |
download | sendgrid-csharp-2dcfcb14adced98a2ff56adcd8c8767c96c3572a.zip sendgrid-csharp-2dcfcb14adced98a2ff56adcd8c8767c96c3572a.tar.gz sendgrid-csharp-2dcfcb14adced98a2ff56adcd8c8767c96c3572a.tar.bz2 |
Update README.md
remove InitializeFilters()
-rwxr-xr-x | README.md | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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); |