使用 MailChimp API V3.0 创建活动。
我想创建一个发送给具有特定兴趣的用户的活动。看起来这在文档中是可能的,但我已经尝试了我能想到的所有排列。只要我忽略了 segment_ops 成员,我就可以很好地创建活动。有没有人有一个PHP代码的例子可以做到这一点?
似乎兴趣被奇怪地处理了,因为您在通过 API 设置用户兴趣时没有包含兴趣类别。我不确定这会如何影响广告系列的创建。
使用 MailChimp API V3.0 创建活动。
我想创建一个发送给具有特定兴趣的用户的活动。看起来这在文档中是可能的,但我已经尝试了我能想到的所有排列。只要我忽略了 segment_ops 成员,我就可以很好地创建活动。有没有人有一个PHP代码的例子可以做到这一点?
似乎兴趣被奇怪地处理了,因为您在通过 API 设置用户兴趣时没有包含兴趣类别。我不确定这会如何影响广告系列的创建。
我已经开始工作了,API 定义可以在这里找到https://us1.api.mailchimp.com/schema/3.0/Segments/Merge/InterestSegment.json
必须将兴趣分组在兴趣类别下(在 UI 的某些部分称为“组”)。
这是收件人数组的 segment_opts 成员的 JSON:
"segment_opts": {
"match": "any",
"conditions": [{
"condition_type": "Interests",
"field": "interests-31f7aec0ec",
"op": "interestcontains",
"value": ["a9014571b8", "5e824ac953"]
}]
}
这是带有注释的 PHP 数组版本。'match' 成员指的是 'conditions' 数组中的规则。段可以匹配任何条件、全部条件或不匹配任何条件。此示例只有一个条件,但可以将其他条件作为附加数组添加到“条件”数组中:
$segment_opts = array(
'match' => 'any', // or 'all' or 'none'
'conditions' => array (
array(
'condition_type' => 'Interests', // note capital I
'field' => 'interests-31f7aec0ec', // ID of interest category
// This ID is tricky: it is
// the string "interests-" +
// the ID of interest category
// that you get from MailChimp
// API (31f7aec0ec)
'op' => 'interestcontains', // or interestcontainsall, interestcontainsnone
'value' => array (
'a9014571b8', // ID of interest in that category
'5e824ac953' // ID of another interest in that category
)
)
)
);
您也可以发送到已保存的段。这个问题是segment_id 必须是int。我将此值作为 varchar 保存在 db 中,除非强制转换为 int,否则它将不起作用。
(我正在使用 \DrewM\MailChimp\MailChimp;)
$segment_id = (int) $methodThatGetsMySegmentID;
$campaign = $MailChimp->post("campaigns", [
'type' => 'regular',
'recipients' => array(
'list_id' => 'abc123yourListID',
'segment_opts' => array(
'saved_segment_id' => $segment_id,
),
),
'settings' => array(
'subject_line' => 'A New Article was Posted',
'from_name' => 'From Name',
'reply_to' => 'info@example.com',
'title' => 'New Article Notification'
)
]);