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

Knowing More on Tracking Pixels

Understanding open tracking pixels: implementation, purposes, and detection

Batch emails may include tracking pixels inserted at the request of Batch customers (see here). Pixels are generated dynamically by SparkPost, the downstream mail delivery partner acting as a sub-processor.

Purposes

Data controllers use pixels for the following purposes within the Batch product:

  1. Campaign performance: Open rate analysis to measure and optimize campaign performance: personalizing content, adjusting send frequency, or selecting the appropriate channel (email, SMS, push).

  2. Profiles & cross-channel targeting: Building recipient profiles based on demonstrated preferences and interests, in order to target them in contexts other than email: websites, mobile applications, other communication channels.

  3. Deliverability: Individual-level open rate measurement for deliverability purposes.

Two distinct pixels are inserted into every email: one near the top of the message body, one near the bottom. Pixels are generated dynamically by SparkPost, our downstream mail delivery partner.

Technical Characteristics

Two distinct pixels are inserted into every email when consent is granted for a specific profile: one near the top of the message body, one near the bottom. The dual placement (top/bottom) is used to improve open detection reliability across email clients that block remote image loading selectively.

Each send produces URLs that are unique per recipient and per campaign.

All tracking pixels share the following properties:

Property
Value

Domain

go.eu.sparkpostmail1.com

Path prefix

/q/

Dimensions

1x1px

File Type

Transparent GIF

HTML tag

<img> with width="1" height="1" alt=""

Example pixel (raw HTML source):

How to Detect Tracking Pixels?

Reference method: HTML source analysis

Inspect the raw HTML source of the email. This is the exhaustive method. It identifies all tracking URLs present in the message.

Detection criteria:

  • <img> tag with width="1" and height="1"

  • src attribute containing the domain go.eu.sparkpostmail1.com and path starting with /q/

Applicable tools

  • Email clients with "View source" or "Show original" functionality (e.g., Gmail > three-dot menu > "Show original")

  • Command-line: grep -i 'sparkpostmail1.com/q/' against the raw .eml file

  • Privacy/compliance auditing tools that parse MIME and extract <img> src attributes

Last updated