I would like to schedule and send the same Email Campaign to the same list again and again may be once in a day of once in every week. Is it possible to automate this process without copying the email campaign and sending it every week again and again. Will i be able to do this from my ConstantContact account or do i need to use the the API to automate the process.
Solved! Go to Solution.
Hi Harika,
Unfortunately, we don't have an automated process inside accounts to copy an email and send it out at given intervals, so you would need to automate that through the API, and not within the account.
Thanks!
Shannon W.
Constant Contact Support
Hi Harika,
Unfortunately, we don't have an automated process inside accounts to copy an email and send it out at given intervals, so you would need to automate that through the API, and not within the account.
Thanks!
Shannon W.
Constant Contact Support
Hi Harika,
The best way to do that would be to do a GET for your campaigns, right after making the copy of your email. This page gives more information on how to do a get and post for campaigns.
Performing a GET returns all of your campaigns, not just sent ones, so you should have no trouble performing a GET right after creating the email in Constant Contact.
Let me know if that helps!
Best Regards,
Shannon W.
Constant Contact Support
A simpler way to get the ID of the Campaign is by parsing the response we return after your create (POST) the Campaign. When you create the campaign a 201 Created response is returned. With that response we also include the full creation XML for the Campaign you just created, including the ID of that Campaign. This would allow you to immediately use that ID to then schedule the Campaign.