diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-16 13:53:32 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-16 13:53:32 -0800 |
commit | 9e1ec82173089b1920bd29a68a45b2990880a8da (patch) | |
tree | 2a7295c12d867ad237345a928279284707f01eb3 /SendGrid/Example/SMTPAPI.cs | |
parent | aaf3c4c1ec1ae13bc2d8ef83ee1471f4e95a22fe (diff) | |
download | sendgrid-csharp-9e1ec82173089b1920bd29a68a45b2990880a8da.zip sendgrid-csharp-9e1ec82173089b1920bd29a68a45b2990880a8da.tar.gz sendgrid-csharp-9e1ec82173089b1920bd29a68a45b2990880a8da.tar.bz2 |
updated filter call
Diffstat (limited to 'SendGrid/Example/SMTPAPI.cs')
-rwxr-xr-x | SendGrid/Example/SMTPAPI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SendGrid/Example/SMTPAPI.cs b/SendGrid/Example/SMTPAPI.cs index b46520b..4e43672 100755 --- a/SendGrid/Example/SMTPAPI.cs +++ b/SendGrid/Example/SMTPAPI.cs @@ -187,7 +187,7 @@ namespace Example var smtpInstance = SMTP.GenerateInstance(new NetworkCredential(_username, _password));
//enable clicktracking
- message.EnableClickTracking("1");
+ message.EnableClickTracking(true);
Console.WriteLine(header.AsJson());
|