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 (which is needed to add a tracking pixel).

They 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 recipient-visitor on your website, you can use the generic method by appending variables to the links in your emails (example):

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 additional 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.

For tracking email clicks and identifying your readers on your site you should similarly append these variables to the links in your emails (example):

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

You can add custom properties as well if they are stored in your database. See details here:

official docs

Last updated