Pixel Tracking in PHP

By Dillon Smart · · · 0 Comments

PHP

When creating email campaigns, it’s important to know how many recipients actually opened your email. This information can help you determine if your efforts are working or if it’s time to change your strategy. Most mail champaign tools such as Mailchimp and SendInBlue use a technique called Pixel Tracking. In this post, you will learn how to create email pixel tracking in PHP and how to count the number of times your email was opened.

If you are unfamiliar with PHP, learn why PHP powers some of the biggest sites in the world and why developers choose to use PHP.

Create the pixel for email tracking

First, you will need to create a PHP file or function which executes the following script. If you are using a function to run the script, you will need to ensure it is called when your specified endpoint is loaded. Example https://example.com/pixel-tracking or https://example.com/pixel-tracking.php.

$pixel = imagecreate(1,1);

Next, set the color of the pixel which is going to be tracked. Ensure the color doesn’t stand out in your email design. If the background of your email is white, then set the color to white using RGB values.

$color = imagecolorallocate($pixel,255,255,255);

Now it’s time to set the pixel to the color you chose as well as the image file type and headers.

imagesetpixel($pixel,1,1,$color);
header("content-type:image/jpg");
imagejpeg($pixel);

Finally, destroy the image to free up memory.

imagedestroy($pixel);

Now following your URL, an image will be created 1 pixel by 1 pixel in your specified color. Use the URL as the image source in your email template.

<img src="https://example.com/pixel-tracking.php">
Email Pixel Tracking in PHP

How to count email pixel tracking

To count up how many times this image was requested in emails, you can either use your server access logs or store a record in a database at the same time the pixel is created.

You can also use URL parameters to differentiate requests, such as a campaign id (https://example.com/pixel-tracking?cid=123) so you know which campaign the request was coming from.

Conclusion

You have now successfully generated an image in PHP for use in your email templates for tracking email opens.

PHP

0 Comment

Was this helpful? Leave a comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.

How to check Composer version – Install and use Composer for PHP

Updated 11th January 2024

Composer is a dependency manager for PHP. First released in 2012, Composer, and its adoption by popular frameworks such as Laravel has single-handedly driven the rise in PHP adoption in recent years. In this post, I will show you how to install and use Composer. How to install Composer To get started, download Composer from

PHP 8.3 release and features

Updated 11th December 2023

The time of year is fast approaching for PHP developers around the world. We have a new PHP release knocking on the door. PHP 8.3 RC 1 is now available for testing, and with this release we are able to get a glimps at some of the highlight features coming later in the year. PHP

How to setup a remote MySQL database connection in PHPStorm

Updated 1st October 2023

PHPStorm is packed full of features designed to make the development process for PHP developers efficient and streamlined. Although Jetbrains have a standalone product for interacting with databases, named DataGrip, PHPStrom ships with the Database Tools and SQL plugin. This tools is powerful, integrated directly within the IDE, and provides a convinient way to intract