MailChimp.NET
MailChimp.NET copied to clipboard
Unsubscribe?
I can subscribe a person without issue using: EmailParameter results = mc.Subscribe("YourListID", email);
I would think that unsubscribing would therefore be: EmailParameter results = mc.Unsubscribe("YourListID", email);
However, VS2012 complains: "Cannot implicitly convert type 'MailChimp.Lists.UnsubscribeResult' to 'MailChimp.Helper.EmailParameter'"
What is the correct syntax for unsubscribe?
The return value from Unsubscribe is an UnsubscribeResult -- not an EmailParameter like in your example. You should be able to see the return result with intellisense in Visual Studio. Does that make sense?
Yep... got it. Thank you.