summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/SendGrid.cs
diff options
context:
space:
mode:
authorEric Becking <eric.becking@sendgrid.com>2012-01-12 10:33:37 -0700
committerEric Becking <eric.becking@sendgrid.com>2012-01-12 10:33:37 -0700
commit68f58e77326f4fd3e2347014790f6298ab8d76ae (patch)
tree8fa4353ebcf723ed0b5e96d3b539367ea4a42543 /SendGrid/SendGridMail/SendGrid.cs
parent46e54865e6fc8ba011b61e0ed2b4bb46ac443633 (diff)
parent1afacb12a55178bf4637aa59b4e9fe53ba2d8663 (diff)
downloadsendgrid-csharp-68f58e77326f4fd3e2347014790f6298ab8d76ae.zip
sendgrid-csharp-68f58e77326f4fd3e2347014790f6298ab8d76ae.tar.gz
sendgrid-csharp-68f58e77326f4fd3e2347014790f6298ab8d76ae.tar.bz2
Merge branch 'us1882' of github.com:sendgrid/sendgrid-csharp into us1882
Diffstat (limited to 'SendGrid/SendGridMail/SendGrid.cs')
-rwxr-xr-xSendGrid/SendGridMail/SendGrid.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs
index fc64637..5031c6f 100755
--- a/SendGrid/SendGridMail/SendGrid.cs
+++ b/SendGrid/SendGridMail/SendGrid.cs
@@ -414,6 +414,7 @@ namespace SendGridMail
Header.AddFilterSetting(filter, new List<string>(){ "text" }, text);
Header.AddFilterSetting(filter, new List<string>(){ "html" }, html);
Header.AddFilterSetting(filter, new List<string>(){ "replace"}, replace);
+ Header.AddFilterSetting(filter, new List<string>(){ "url"}, url);
Header.AddFilterSetting(filter, new List<string>(){ "landing" }, landing);
}
@@ -431,11 +432,11 @@ namespace SendGridMail
var filter = this._filters["GoogleAnalytics"];
Header.Enable(filter);
- Header.AddFilterSetting(filter, new List<string>(){ "source " }, source);
+ Header.AddFilterSetting(filter, new List<string>(){ "source" }, source);
Header.AddFilterSetting(filter, new List<string>(){ "medium" }, medium);
Header.AddFilterSetting(filter, new List<string>(){ "term" }, term);
Header.AddFilterSetting(filter, new List<string>(){ "content" }, content);
- Header.AddFilterSetting(filter, new List<string>(){ "compaign" }, campaign);
+ Header.AddFilterSetting(filter, new List<string>(){ "campaign" }, campaign);
}
public void EnableTemplate(string html)