> For the complete documentation index, see [llms.txt](https://help.leadboxer.com/leadboxer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.leadboxer.com/leadboxer/integrations/email/marketing-emails/constant-contact.md).

# Constant Contact

Constant contact offers 2 products to send email:&#x20;

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).&#x20;

They do offer a Zapier integration, so you will be able to send email open events to LeadBoxer using the [Zapier webhook](/leadboxer/integrations/other/how-to-get-started-with-leadboxer-on-zapier/zapier-webhook.md) method.&#x20;

2. 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):

{% code overflow="wrap" %}

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

{% endcode %}

Official Documentation can be found here

[Insert dynamic links in an email](https://knowledgebase.constantcontact.com/email-digital-marketing/articles/KnowledgeBase/38461-Insert-Dynamic-Links-in-an-Email?lang=en_US)

### Lead Gen & CRM

Tracking Pixel example

{% code overflow="wrap" %}

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

{% endcode %}

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

{% code overflow="wrap" %}

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

{% endcode %}

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):

{% code overflow="wrap" %}

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

{% endcode %}

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

[official docs](https://knowledgebase.constantcontact.com/lead-gen-crm/articles/KnowledgeBase/50529-Available-Lead-Gen-CRM-Merge-Variables?lang=en_US)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.leadboxer.com/leadboxer/integrations/email/marketing-emails/constant-contact.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
