Mailchimp API(.Net Wrapper)-自动订阅用户

发布于 2024-12-10 23:51:57 字数 450 浏览 2 评论 0原文

我正在使用 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 向用户发送一封电子邮件,要求他们确认订阅,网站也是如此,我需要一种方法来自动接受用户的订阅。

这可能吗?我们该如何去做呢?

I'm using the MailChimp API to subscribe users to my list (There is an opt out on the reg form) I'm using the PerceptiveMCAPI wrapper to handle this.

Once the user has registered,

    var ListId = "{LISTID}";

    var a = new listSubscribe(new listSubscribeInput(ListId, model.Email, new Dictionary<string, object>()));

    if(a.Execute().result)
    {
       //Do Stuff
    }

I need a way to auto confirm the subscription (Since the site has it's own validation methods). At the moment MailChimp sends the user an email asking them to confirm there subscription and so does the website, I need a way to auto accept the subscription for the user.

Is this possible? And how do we go about it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哀由 2024-12-17 23:51:57

看起来您应该能够将参数中的 MailChimp 双选项设置为 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 )

It looks like you should be able to set the MailChimp double opt in param to false to stop these confirms.

Use the listSubscribe overload which exposes it:

  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 )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文