Email/newsletter campaigns and the API

David Rissenberg asked on February 25, 2015 15:49

I would like to manage campaigns and send email blasts via the API. Is this possible? Specifically, we have Microsoft CRM and I'd like to do this within that product. This has been done with other products such as an integration of MS CRM and MailChimp where MailChimp email blasts can be executed from within CRM. Working with the templates themselves I assume will still need to be done within Kentico.

Recent Answers


Bryan Soltis answered on February 25, 2015 19:29

Hi David. You may have a few options here. Kentico out of the box supports multiple SMTP servers. This doesn't give you control over how the emails are sent, but rather the ability to spread them across multiple servers (if you have EMS).

https://docs.kentico.com/display/K82/Configuring+SMTP+servers#ConfiguringSMTPservers-ConfiguringadditionalSMTPservers

I think more likely you want to know about how to override the newsletter email process in general. This will require a little bit of custom code. First, you will want to set up a custom Email Provider to handle the interaction with MailChimp (or any other 3rd party service). What you are doing is intercepting the "SendEmailInternal" functionality and executing your own code instead.

https://docs.kentico.com/display/K82/Custom+Email+provider+example

Once you have this in place, you can use a Global Event Handler to capture the actual functionality of the newsletter, if you need to take your custom code further. Not every function is overridable so you may have to check out the options to see what part you need to use.

https://docs.kentico.com/display/K82/Reference+-+Global+system+events

If you want to manage the actual campaigns(and their tracking within Kentico), the API will be your friend. You can pretty program any Online Marketing activity within Kentico with it. You can check out an example here to get you started.

https://docs.kentico.com/pages/viewpage.action?pageId=58335862

Hope this helps!

Bryan Soltis Kentico Technical Evangelist

0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.