I use the MailChimp API to subscribe users to my list (there is a refusal in the form of reg). I use the PerceptiveMCAPI shell to handle this.
Once a user has registered,
var ListId = "{LISTID}"; var a = new listSubscribe(new listSubscribeInput(ListId, model.Email, new Dictionary<string, object>())); if(a.Execute().result) {
I need a way to automatically confirm my subscription (since it has its own verification methods). At the moment, MailChimp sends an email to the user with a request to confirm the subscription, as well as the site, I need a way to automatically accept the subscription for the user.
Is it possible? And how do we do it?
LiamB
source share