Mailchimp API (v1.3): addresses added with listSubscribe() don't appear in dashboard

别来无恙 提交于 2019-12-06 06:02:40

The default action of listSubscribe to add a subscriber is opt-in. This means that when you submit a listSubscribe the subscribed user will get an email asking to confirm their opt-in.

If the user does not follow the link in the email then they will not appear in the dashboard.

You can bypass this by using:

'double_optin' => FALSE,

http://apidocs.mailchimp.com/api/1.3/listsubscribe.func.php

However this is only recommended for very occasional circumstances (essentially where you are handling the opt-in).

In my case I am not activating a user account until they verify their email address. If let the opt-in email be sent then the user is going to get a number of emails from my web app. I'm being very careful to make sure that they're verifying their subscription and all subscription stuff is being processed by the web app (eg a user unsubscribes within the web app, not via MailChimp).

jyoungblood

I talked to the Mailchimp support, and they said those actions won't happen using their public API; there is no way to trigger them.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!