Vb.net 创建邮件黑猩猩活动

Vb.net 创建邮件黑猩猩活动,vb.net,mailchimp,Vb.net,Mailchimp,我没有得到任何答案,你能指出我的问题吗?如果你没有从人们那里得到任何答案,你可能想看看是否有任何电子邮件正在发送,以及它们是否在正确的时间发送给正确的人。嗨,谢谢你的快速回复,我正在使用PerceptiveMCAPI。我应该在标签框中获取活动id。但它什么也不退。这是我的问题谢谢你的帮助我解决了。我更改了params.type=EnumValues.campaign_type.autothanks,为了您的帮助,我找到了答案。我将params.type=EnumValues.campaign_t

我没有得到任何答案,你能指出我的问题吗?

如果你没有从人们那里得到任何答案,你可能想看看是否有任何电子邮件正在发送,以及它们是否在正确的时间发送给正确的人。

嗨,谢谢你的快速回复,我正在使用PerceptiveMCAPI。我应该在标签框中获取活动id。但它什么也不退。这是我的问题谢谢你的帮助我解决了。我更改了params.type=EnumValues.campaign_type.autothanks,为了您的帮助,我找到了答案。我将params.type=EnumValues.campaign_type.auto更改为params.type=EnumValues.campaign_type.regular
   Dim CCoptions As campaignCreateOptions = New campaignCreateOptions()
    CCoptions.from_email = "chimpmail12@gmail.com"
    CCoptions.from_name = "dummy"
    CCoptions.to_email = "vettr@gmail.com"
    CCoptions.subject = "HelloWorld"
    CCoptions.list_id = "0fd2345g"
    CCoptions.title = "who am i?"

    Dim CCcontent As Dictionary(Of String, String) = New Dictionary(Of String, String)
    CCcontent.Add("html", "some pretty html content  message")
    CCcontent.Add("text", "hdfjhfk000")

    Dim params As campaignCreateParms = New campaignCreateParms
    params.content = CCcontent
    params.options = CCoptions
    params.type = EnumValues.campaign_type.auto
    params.apikey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-us2"

    Dim CCinput As campaignCreateInput = New campaignCreateInput(params)

    Dim CCcmd As campaignCreate = New campaignCreate(CCinput)
    Dim CCoutput As campaignCreateOutput = CCcmd.Execute()

    Label1.Text = CCoutput.result