diff options
author | Brandon West <brawest@gmail.com> | 2014-01-06 14:29:57 -0700 |
---|---|---|
committer | Brandon West <brawest@gmail.com> | 2014-01-06 14:29:57 -0700 |
commit | c5f9ddb7b135013547c03ce576e6443a72beef01 (patch) | |
tree | 72126eca67ccd3233d8250b24c07f727220523f1 /SendGrid/SendGridMail/ISendGrid.cs | |
parent | 96c7b116a9db2d184f07e659b837145ebe10765d (diff) | |
download | sendgrid-csharp-c5f9ddb7b135013547c03ce576e6443a72beef01.zip sendgrid-csharp-c5f9ddb7b135013547c03ce576e6443a72beef01.tar.gz sendgrid-csharp-c5f9ddb7b135013547c03ce576e6443a72beef01.tar.bz2 |
add dependency on Smtpapi library, remove SMTP functionality
Diffstat (limited to 'SendGrid/SendGridMail/ISendGrid.cs')
-rw-r--r--[-rwxr-xr-x] | SendGrid/SendGridMail/ISendGrid.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/SendGrid/SendGridMail/ISendGrid.cs b/SendGrid/SendGridMail/ISendGrid.cs index 9725be0..ad868eb 100755..100644 --- a/SendGrid/SendGridMail/ISendGrid.cs +++ b/SendGrid/SendGridMail/ISendGrid.cs @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.IO;
using System.Net;
using System.Net.Mail;
+using Smtpapi;
namespace SendGridMail
{
@@ -99,14 +100,14 @@ namespace SendGridMail /// </summary>
/// <param name="replacementTag">the string in the email that you'll replace eg. '-name-'</param>
/// <param name="substitutionValues">a list of values that will be substituted in for the replacementTag, one for each recipient</param>
- void AddSubVal(String replacementTag, List<String> substitutionValues);
+ void AddSubstitution(String replacementTag, List<String> substitutionValues);
/// <summary>
/// This adds parameters and values that will be bassed back through SendGrid's
/// 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 AddUniqueIdentifiers(IDictionary<String, String> identifiers);
+ void AddUniqueArgs(IDictionary<String, String> identifiers);
/// <summary>
/// This sets the category for this email. Statistics are stored on a per category
|