Email Tracking

B

Email Tracking

Track opens on emails sent from Outlook via Zapier, by embedding a tracking pixel in the HTML body.

Emails Sent

0

registered via webhook

Opened

0

at least one open

Open Rate

0%

directional — mail clients often block images

Zapier Setup

Register each send here first, then embed the returned pixel URL in your Outlook HTML email body.

API Key

No API key yet — generate one to get started.

1. Add a Webhook step before "Send Email"

POST request, headers, and JSON body:

/api/app/email-tracking/messages

Header

X-Api-Key: <your key>

JSON body

{
  "recipientEmail": "{{recipient_email}}",
  "recipientName": "{{recipient_name}}",
  "subject": "{{subject}}",
  "campaign": "q3-renewal-reminder"
}

2. Add the pixel to the HTML email body

Use the pixelUrl from the webhook response, appended just before </body>:

<img src="{{pixelUrl}}" width="1" height="1" alt=""
     style="display:block;width:1px;height:1px;border:0;" />

Make sure the Outlook "Send Email" action body type is set to HTML, not plain text — the pixel won't load otherwise.

Tracked Emails

No tracked emails yet

Sends registered via the webhook will appear here.