.Net 4 wrapper Library for MailChimp newsletter API v2
-
Add the dlls to your project
-
Add the following links in your configuration file
-
Code example to subscribe a newsletter with the given groupings and merge vars
var subscribeSources = new Grouping {Name = "Subscribe Source"}; subscribeSources.Groups.Add("Site"); var couponsGained = new Grouping {Name = "Coupons Gained"}; couponsGained.Groups.Add("Coupon1"); var interests = new Grouping {Name = "Interests"}; interests.Groups.Add("Extreme Games"); var fields = new Dictionary<string, string> { {"GENDER", "Male"}, {"DATEBORN", DateTime.Now.ToString(CultureInfo.InvariantCulture)}, {"CITY", "Athens"}, {"COUNTRY", "Greece"} }; var response = mailChimpApiService.Subscribe(String.Format(emailPattern, i), new List<Grouping>() { subscribeSources, couponsGained, interests }, fields);