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 recipients) { throw new NotImplementedException(); } public void AddSubVal(string tag, IEnumerable substitutions) { throw new NotImplementedException(); } public void AddUniqueIdentifier(IDictionary 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 settings, string value) { throw new NotImplementedException(); } public void AddHeader(MailMessage mime) { throw new NotImplementedException(); } public String AsJson() { throw new NotImplementedException(); } } }