MailChimp API v1.3 如何将订阅者设置为待处理

问题描述 投票:0回答:1

有谁知道是否仍然可以使用 Mailchimp API v1.3 将新订阅者的状态设置为“待处理”?该文档似乎已被弃用或禁用。

新订阅者的有效负载是:

$payload = array('email_address' => $this->email,
                'merge_vars' => $this->merge, 
                'email_type' => $this->emailType,
                'double_optin' => $this->doubleOptin,
                'update_existing' => $this->updateExisting,
                'replace_interests' => $this->replaceInterests,
                'send_welcome' => $this->sendWelcome,);

我尝试添加...

"status" => "pending"

与 API v3 一样,这不起作用。我想检查文档,看看当时的命名是否不同。非常感谢任何帮助。

php email deprecated mailchimp
1个回答
0
投票

此问题的解决方案包括升级到支持 MailChimp API v3 的软件包,或者自行实现。没有其他可用的解决方法。

© www.soinside.com 2019 - 2024. All rights reserved.