【发布时间】:2018-08-23 02:36:51
【问题描述】:
$newsletter_subject_line = 'Test Mail';
$reply_to = 'test@test.com';
$from_name = 'test@test.com';
$MailChimp = new MailChimp('1234567890thisismyMailchimpAPI');
// Create new Campaign
$result = $MailChimp->post("campaigns", [
'type' => 'regular',
'recipients' => ['list_id' => '1234asdf1234'],
'settings' => ['subject_line' => $newsletter_subject_line,
'reply_to' => $reply_to,
'from_name' => $from_name
]
]);
这就是我通过 Mailchimp 和 PHP 向我拥有的用户列表发送电子邮件活动的方式。有没有办法可以将此电子邮件发送给此列表的特定用户?
例如:
'recipients' => ['list_id' => '1234asdf1234/members/1234user1234']
【问题讨论】:
-
这不是最好询问 MailChimp 开发支持吗?我的意思是这里的人可能也知道,但为什么不直接去马嘴呢?
-
你的观点是对的,我已经询问了 MailChimp 开发支持,但他们的回答有延迟,我很着急,所以决定也在这里问。
-
反对票是什么?