Hi,
We use Marketo to send out a Weekly newsletter in which we sell ad space. We use tokens for the code and advertisers supply us with a URL. Our images are hosted via Adzerk. An upcoming advertiser wants to add a tracking pixel to the URL.
Our current code is
<p><a title="IMAGE TITLE" href="DIRECT LINK TO THE ADVERTISER LANDING PAGE" target="_blank"><img style="border: none;" src="http://engine.adzerk.net/s/32312/0/5/&Key={{Campaign.Name}}{{Lead.Email Address}}" alt="IMAGE TITLE" width="300" height="250" /></a></p>
Can anyone point me in the direction of references that would help me add a tracking pixel to the code I'm currently using?
Thank you.
Hmmmm....I don't have the perfect answer because personally I would like to see more details to better understand what you are looking for?
Typically your vendor should provide you instructions and/or supporting documentation if they prefer their pixels to be implemented in a certain way. If not, then you can just embed them in your HTML, Javascript files etc.
You can implement another image tag for this pixel and keep it hidden?
Here's a link that may give you some pointers - Pixel tracking in third-party and custom creatives - DoubleClick for Publishers Help
Hope it helps!
Maruti
Thank you for the link! I appreciate it!
Clare,
That request from your upcoming advertiser doesn't make sense (or they're explaining what they want incorrectly).
When you send an email with Marketo we automatically add a transparent tracking pixel image so that when a recipient opens it, their email client requests the contents of this transparent tracking pixel image from Marketo's servers and we know that the corresponding email was opened. You can certainly add another platform's transparent tracking pixel image to your emails by including it in your email template or in the body content of the email itself. That way, the other platform would also be able to know when an email was opened.
Separately, we also convert any links in Marketo emails to Marketo tracking links. When a user clicks on the tracking link, it first hits Marketo's servers where we record the click, then it re-directs the user to the right location. In your case, your code is inserting an image that is prepared by the advertiser and the link to the advertiser landing page probably has some kind of token that allows them to know that someone clicked on this image in your email. When you say they want to add a tracking pixel to the URL, I'm not sure what you're asking. Do they want to add a transparent tracking pixel elsewhere in the email so that they know if it was opened, or do they want you to add something to their URL?
Here's what I have from the advertiser:
The URL is http://www.sfpalace.com/offer/established-in-1875-reinvented-in-2015?EM=NEWS_FSTAR_RENO_LC_373_WEST
But they also want to add a tracking pixel which is this tag:
https://ad.atdmt.com/i/img;p=11042208365808;idfa=;idfa_lat=;aaid=;aaid_lat=;cache=
From what Adzerk advised, we’d have to load this into Marketo. In Adzerk we had to ad the above as an image tag so it looked like this in the ad code:
<img src="https://ad.atdmt.com/i/img;p=11042208365808;idfa=;idfa_lat=;aaid=;aaid_lat=;cache=">
I've tried adding that as the image code using my ad code but that doesn't work.
Any advice?
I'm confused, they asked you to put the same tracking pixel in all the emails you are sending to your leads? How will that help them? If you send 1,000 emails to people with the same pixel, they won't know who opened the message unless each was unique...
I also just added that <img> element you specified above to an email in Marketo and it worked fine. The email I received had that in it...
They want to measure impressions through their own tracking pixel above and beyond what we are measuring in Marketo.
I tried
<a href="http://www.sfpalace.com/offer/established-in-1875-reinvented-in-2015?EM=NEWS_FSTAR_RENO_LC_373_WEST" target="_blank" title="Palace Hotel"><img style="border: none;" src="https://ad.atdmt.com/i/img;p=11042208365808;idfa=;idfa_lat=;aaid=;aaid_lat=;cache=" alt="Palace Hotel" width="300" height="250" /></a>
but that is resulting in a broken image.
There really isn't any reason to put the tracking pixel inside the ad link. Those are two different processes that run independently (downloading the image, clicking the link).
Yeah, you should put the <img> outside of the <a> tag. They are unrelated as Sanford mentions. I also assume the <a> tag should have something in it besides a transparent tracking pixel? Don't you want the user to click on something? I also don't understand why the image being served from engine.adzerk.net won't give you impression counts? Why do you even need an additional tracking pixel? I am really lost with this implementation but my guess is you want something like this:
<img src="https://ad.atdmt.com/i/img;p=11042208365808;idfa=;idfa_lat=;aaid=;aaid_lat=;cache=" />
<p><a href="http://www.sfpalace.com/offer/established-in-1875-reinvented-in-2015?EM=NEWS_FSTAR_RENO_LC_373_WEST" target="_blank" title="Palace Hotel"><img style="border: none;" src="http://engine.adzerk.net/s/32312/0/5/&Key={{Campaign.Name}}{{Lead.Email Address}}" alt="IMAGE TITLE" width="300" height="250" /></a></p>