diff options
author | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-24 16:30:29 -0800 |
---|---|---|
committer | Tyler Bischel <tyler.bischel@sendgrid.com> | 2012-01-24 16:30:29 -0800 |
commit | 9b04e9c45445883508b699af481fd7c076ee0d17 (patch) | |
tree | 73695bb9fa31d0996168402c8d6568813848e802 /SendGrid/SendGridMail | |
parent | a4c59ce574fa71bd7d2096b4a142e8d54670ea3c (diff) | |
download | sendgrid-csharp-9b04e9c45445883508b699af481fd7c076ee0d17.zip sendgrid-csharp-9b04e9c45445883508b699af481fd7c076ee0d17.tar.gz sendgrid-csharp-9b04e9c45445883508b699af481fd7c076ee0d17.tar.bz2 |
added examples based on user feedback
Diffstat (limited to 'SendGrid/SendGridMail')
-rwxr-xr-x | SendGrid/SendGridMail/ISendGrid.cs | 2 | ||||
-rwxr-xr-x | SendGrid/SendGridMail/SendGrid.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SendGrid/SendGridMail/ISendGrid.cs b/SendGrid/SendGridMail/ISendGrid.cs index 724d145..10f0826 100755 --- a/SendGrid/SendGridMail/ISendGrid.cs +++ b/SendGrid/SendGridMail/ISendGrid.cs @@ -104,7 +104,7 @@ namespace SendGridMail /// Event API if an event notification is triggered by this email.
/// </summary>
/// <param name="identifiers">parameter substitutionValues pairs to be passed back on event notification</param>
- void AddUniqueIdentifier(IDictionary<String, String> identifiers);
+ void AddUniqueIdentifiers(IDictionary<String, String> identifiers);
/// <summary>
/// This sets the category for this email. Statistics are stored on a per category
diff --git a/SendGrid/SendGridMail/SendGrid.cs b/SendGrid/SendGridMail/SendGrid.cs index 5f847dc..e3b992f 100755 --- a/SendGrid/SendGridMail/SendGrid.cs +++ b/SendGrid/SendGridMail/SendGrid.cs @@ -288,7 +288,7 @@ namespace SendGridMail Header.AddSubVal(replacementTag, substitutionValues);
}
- public void AddUniqueIdentifier(IDictionary<String, String> identifiers)
+ public void AddUniqueIdentifiers(IDictionary<String, String> identifiers)
{
Header.AddUniqueIdentifier(identifiers);
}
|