我正在使用MailChimp API将用户订阅到我的列表中(注册表单上有一个选择退出)我正在使用PerceptiveMCAPI包装器来处理这个问题。
用户注册后,
var ListId = "{LISTID}";
var a = new listSubscribe(new listSubscribeInput(ListId, model.Email, new Dictionary<string, object>()));
if(a.Execute().result)
{
//Do Stuff
}
我需要一种方法来自动确认订阅(因为该网站有自己的验证方法)。目前,MailChimp向用户发送电子邮件,要求他们确认订阅,网站也是如此,我需要一种方法来自动接受用户的订阅。
这可能吗?我们该怎么做呢?
答案 0 :(得分:5)
看起来您应该能够将MailChimp double opt in param设置为false以停止这些确认。
使用公开它的listSubscribe重载:
public listSubscribeParms( string id, string email_address,
Dictionary<string, object> merge_vars, EnumValues.emailType email_type,
bool double_optin, bool update_existing, bool replace_interests, bool send_welcome )