5

我有一个 Mailchimp RSS 活动,它读取网站上的 RSS 提要并设置为每天一次。在我将项目添加到提要后,我想以编程方式发送此广告系列。

我正在使用 PerceptiveMCAPI,我的触发活动的代码是

campaignSendNowInput campaignSendNowInput = new campaignSendNowInput(apiKey, campaignKey);
campaignSendNow campaignSendNow = new campaignSendNow(campaignSendNowInput);
campaignSendNowOutput campaignSendNowOutput = campaignSendNow.Execute();

我收到的错误看起来像

"Error Code: 313, Message: This Campaign has already been sent and can not be sent again."

关于什么会导致这种情况的任何想法?

4

1 回答 1

0

好吧,我想在多看一点之后,我最初的逻辑是错误的。我认为正确的方法是每次都创建一个新的广告系列,然后发送这个新的广告系列。广告系列旨在发送一次。

Mailchimp 中的 RSS 提要公告仅限于每天一次,因此您需要使用标准活动,您可以以编程方式创建并发送该活动。如果内容来自 RSS 提要至关重要,您仍然可以使用 RSS 合并标签来使用 RSS 提要。

于 2012-09-15T05:51:36.690 回答