summaryrefslogtreecommitdiffstats
path: root/SendGrid/SendGridMail/Header.cs
diff options
context:
space:
mode:
authorTyler Bischel <tyler.bischel@sendgrid.com>2012-01-10 13:43:43 -0800
committerTyler Bischel <tyler.bischel@sendgrid.com>2012-01-10 13:43:43 -0800
commita21ebe40919ebbeba1ca6b87b14401f5503cf5dd (patch)
treeab36b40ff98b5c3eed4755640eb490875e768202 /SendGrid/SendGridMail/Header.cs
parent1dd16986298af75ef430f8eb9611c8214993625e (diff)
parente7e7ea043de835793b9d65e6176e6148d0b51e29 (diff)
downloadsendgrid-csharp-a21ebe40919ebbeba1ca6b87b14401f5503cf5dd.zip
sendgrid-csharp-a21ebe40919ebbeba1ca6b87b14401f5503cf5dd.tar.gz
sendgrid-csharp-a21ebe40919ebbeba1ca6b87b14401f5503cf5dd.tar.bz2
Merge branch 'us1882-test' into us1882
Conflicts: .gitignore
Diffstat (limited to 'SendGrid/SendGridMail/Header.cs')
-rwxr-xr-xSendGrid/SendGridMail/Header.cs56
1 files changed, 56 insertions, 0 deletions
diff --git a/SendGrid/SendGridMail/Header.cs b/SendGrid/SendGridMail/Header.cs
new file mode 100755
index 0000000..2af4acd
--- /dev/null
+++ b/SendGrid/SendGridMail/Header.cs
@@ -0,0 +1,56 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net.Mail;
+using System.Text;
+
+namespace SendGridMail
+{
+ public class Header : IHeader
+ {
+ public void AddTo(IEnumerable<string> recipients)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void AddSubVal(string tag, IEnumerable<string> substitutions)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void AddUniqueIdentifier(IDictionary<string, string> identifiers)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void SetCategory(string category)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void Enable(string filter)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void Disable(string filter)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void AddFilterSetting(string filter, IEnumerable<string> settings, string value)
+ {
+ throw new NotImplementedException();
+ }
+
+ public void AddHeader(MailMessage mime)
+ {
+ throw new NotImplementedException();
+ }
+
+ public String AsJson()
+ {
+ throw new NotImplementedException();
+ }
+ }
+}