Constant Contact

Constant contact offers 2 products to send email:

  1. Email & Digital Marketing

  2. Lead Gen & CRM

Email & Digital Marketing

  1. Tracking Email open events

For Email & Digital Marketing, they currently do not offer the option to add edit HTML (needed to add a tracking pixel).

The do offer a Zapier integration, so you will be able to send email open events to LeadBoxer using the Zapier webhook method.

  1. Tracking email link clicks

For tracking email link clicks, and identifying the website visitor on your website, you can use the generic method by appending these variables to the links in your emails like this:

https://yourdomain.com/?firstName=[[firstName]]&lastName=[[lastName]]&email=[[emailAddress]]&companyName=[[account.organizationName]]

Official Documentation can be found here

Insert dynamic links in an email

Lead Gen & CRM

Tracking Pixel example

<img src="https://track.leadboxer.com/log?datasetId=YOUR DATASET ID&campaign=CAMPAIGNNAME&email={$emailAddress}"/>

If you want to pass more details you can do so:

<img src="https://track.leadboxer.com/log?datasetId=YOUR DATASET ID&campaign=CAMPAIGNNAME&firstName={$firstName}&lastName={$lastName}&email={$emailAddress}&companyName={$companyName}"/>

That should take care of tracking email opens.

As for tracking email clicks and identifying your readers on your site you should similarly append these variables to the links in your emails like this:

https://yourdomain.com/?firstName={$firstName}&lastName={$lastName}&email={$emailAddress}&companyName={$companyName}

You can add custom properties as well if you have these stored in your database. See details here

official docs

Please let me know if this works

Last updated