For the complete documentation index, see llms.txt. This page is also available as Markdown.

Managing Email Tracking Pixels

Configure email open tracking consent per profile and manage Batch's pixel insertion behavior.

About Tracking Pixels

Tracking pixels are invisible 1x1 transparent images embedded in the HTML of an email. They have no visual function. When a recipient opens the email, their mail client loads the image from a remote server, triggering an HTTP request that records the open event.

They serve several purposes within the Batch platform:

  • Campaign performance measurement: tracking open rates to optimize sends, A/B test subject lines, adjust frequency, and select the right channel.

  • Engagement scoring and targeting: building audience segments based on engagement behavior for CRM personalization.

  • Deliverability monitoring: detecting inactive profiles to clean lists and adapt sending frequency or stop delivery.

  • Retargeting: crossing open data with user interests to target profiles on other channels.

To help customers comply with local legislation, especially in the European Union, Batch allows you to control whether tracking pixels are included in emails sent to a given profile.

As a data controller, you are responsible for collecting and storing your users' consent. Batch does not collect or store consent on your behalf.

Once consent has been obtained, you can share the relevant status with Batch at the profile level to control tracking pixel insertion accordingly.

This can be done using the Profiles API, by passing the consent status in the native attribute $email_open_tracking_consent. It accepts two values:

  • granted

  • denied

You can review the consent status for a profile using the Profile view:

Tracking Pixel Consent - Profile view

Tracking Pixel Insertion Logic

Batch automatically handles the tracking pixel insertion depending on the value of the attribute $email_open_tracking_consent:

granted

All emails will contain a tracking pixel.

denied or no value set

These users will only receive emails without tracking pixels.

As a consequence:

  • Email opens are not recorded.

  • Open-based engagement scores are not updated.

  • Audience segments that rely on open behavior will not reflect that send.

  • Retargeting logic based on email opens will not be triggered.

In case you don't have your own consent withdrawal mechanism, you can use Batch's native link in any email template via a native personalization attribute.

Create a new link, then select the option "Deny Open Tracking Consent":

Upon click, the profile's native attribute email_open_tracking_consent is set to denied, and the recipient is redirected to the following default landing page:

Removed tracking pixel consent landing page

Bypassing Batch Tracking Pixels Management

If you are certain that you exclusively target users from regions where consent is not required to use tracking pixels, you can bypass Batch's tracking pixel management to always include a tracking pixel in all your emails.

This can be done from your project's settings → Channels → Email.

Targeting & Content Personalization

The native attribute $email_open_tracking_consent allows you to target users based on their consent status.

This may be useful in your email automations if you need to collect consent after collecting the email address in a context that didn't allow you to get a clear consent (e.g. email addresses collected in store, etc).

Content Personalization

The personalization attribute {{b.is_email_open_tracking}} allows you to conditionally display content based on a profile's consent status:

  • $email_open_tracking_consent = granted {{b.is_email_open_tracking}} = true

  • $email_open_tracking_consent = denied or null {{b.is_email_open_tracking}} = false

For more granular conditions, {{b.email_open_tracking_consent}} is also available, with three possible values:

  • GRANTED

  • DENIED

  • UNSPECIFIED

Data Export

The events export endpoint allows you to export any changes that impacted the tracking pixel consent for users, with a look back period of 90 days.

A profile event called email_tracking_consent_updated is generated on every native opt-out link click, even if $email_open_tracking_consent was already set to denied (opt-in logic is not currently supported).

It includes the standard email event fields plus a consent_value field, which will always be denied .

Batch includes an attribute $email_open_tracking_consent (values: granted / denied) for the following events:

  • email_sent

  • email_delivered

  • email_open

It reflects the profile's consent value related to a specific send, which is useful for any investigation you may need to run.

The profiles attributes export endpoint of the Profiles API allows you to export the current consent status of all your profiles or of a part of your profiles.

The output will contain the consent status in the attribute $email_open_tracking_consent.

Frequently Asked Questions

Open Rate Calculation

The open rate is exclusively calculated based on the portion of your audience that granted consent. This avoids diluting the metric by including recipients from whom no open data can be collected.

Open rates are calculated as follows when consent-based pixel insertion is enabled:

For campaigns where at least one recipient did not receive an email with a tracking pixel, a tooltip is displayed on the open rate metric, indicating the number of recipients included in the calculation.

When a profile withdraws consent, previously sent emails may still contain tracking pixels. If users open an email sent before consent withdrawal, Batch will not process any open data related to that event.

Data Retention

Email open events are automatically anonymized after 90 days.

Tracking Pixels Definition & Detection

You will find more information on tracking pixels inserted in emails and how to identify them in our dedicated article: Knowing More on Tracking Pixels

Batch does not support, and does not plan to support in the short term, the French Data Protection Authority (CNIL) consent exemption. Emails sent to profiles without valid consent will not contain any tracking pixels.

Here is more context:

  • Legal requirement: Batch already provides data controllers with everything needed to achieve compliance. Supporting the exemption is optional, and its added value for senders in France is limited at this stage.

  • France-specific restriction. The exemption documented by the CNIL currently applies to France only. Our product team is actively monitoring publications from other EU member states' data protection authorities, with the goal of delivering a solution that works across all countries covered by the European directive regulating tracking pixel usage.

  • Limited added value. The exemption appears restricted, in most cases, to narrow and auditable deliverability purposes. Inactivity measurement should not rely solely on open rates, and open rates have been significantly degraded for years due to Apple Mail Privacy Protection. We do not see sufficient value in this exemption to justify the development investment at this stage.

We nonetheless acknowledge the importance of exemption support for certain use cases, and do not rule out prioritizing this feature in late 2026.

Last updated