我正在使用这个PHP包装器https://github.com/drewm/mailchimp-api/。看起来应该很简单,但我一直有100个例外。我认为这与电子邮件地址有关,但我不确定。
这就是我所拥有的:
$MailChimp = new \Drewm\MailChimp($apikey);
$result = $MailChimp->call('lists/subscribe', array(
'id' => 'e659124bf2',
'email' => array('email'=>"davy@example.com"),
'merge_vars' => array('FNAME'=>'Davy', 'LNAME'=>'Jones'),
'double_optin' => false,
'update_existing' => true,
'replace_interests' => false,
'send_welcome' => false,
));
print_r($result);