我想通过“简报”,“用户”和“会员”对我的用户进行分组,并通过API发送电子邮件,我该如何做到这一点:http://apidocs.mailchimp.com/api/1.3/index.php
Adding users to groups似乎相当直接,但我似乎无法找到如何发送给他们。 createCampaign
和campaignSendNow
都没有任何群组提及或如何发送给他们。
目前我正在通过3个单独的列表来处理这个问题。
答案 0 :(得分:12)
您需要使用campaignCreate()方法中的segment_opts
参数来选择要发送到的组(即细分)。
使用segment_opts
参数,您可以选择特定的组。像这样:
// Assuming your interest group has an ID of 1.
$conditions = array();
$conditions[] = array('field'=>'interests-1', 'op'=>'one', 'value'=>'Newsletter');
$segment_opts = array('match'=>'all', 'conditions'=>$conditions);
$retval = $api->campaignCreate($type, $opts, $content, $segment_opts);