Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have tracking in our emails to track clicks back to our site through Google Analytics. But is there a way to track opens? I would imagine I have to add a google tracking image to the email somewhere. Possibly javascript too?

share|improve this question
1  
You cannot put JavaScript in an email. Well, you can, it'll just never execute. – yahelc Dec 16 '10 at 3:43
Absolutely ZERO mail clients execute any form of JavaScript? – at. Dec 16 '10 at 3:55
very few do. But whats the point, you dont get stats . You only get random numbers which you cant rely on. – Kiran Ambati Dec 5 '12 at 9:39

6 Answers

up vote 3 down vote accepted

If you want to see in Google Analytics, how often an email or newsletter was opened (or viewed), you can use http://email-tracking-with-google-analytics.com/, There you can get a pixel which you insert into your email. The pixel will then cause your Google Analytics to show how often the email has been read.

share|improve this answer
Doug had a similar answer in that both are about inserting a pixel to tell google there was a pageview when that pixel is viewed... but this answer is easy and seems to be a site maintained around this process. – at. Mar 4 '11 at 4:59
1  
Only complaint about this is that it goes through a third-party (no control over speed, availability, functionality, etc.). – ebynum Oct 6 '11 at 20:20
10  
The URL listed in this link is dead. – 81bronco Mar 16 '12 at 20:46
1  
This seems to be the same thing: pixelsite.info – Kevin Aug 26 '12 at 18:50

As others have pointed out, you can't use Javascript in email. The actual tracking is done by a request for __utm.gif though and the Javascript just constructs the GET parameters.

Google supports non-Javascript uses of Google Analytics per their Mobile web docs: http://code.google.com/mobile/analytics/docs/web/

They document the full list of parameters, but the only necessary parameters are:

Parameter    Description
utmac        Google Analytics account ID
utmn         Random ID to prevent the browser from caching the returned image
utmp         Relative path of the page to be tracked
utmr         Complete referral URL
share|improve this answer
very nice, I can see how this is useful for emails. – at. Nov 23 '11 at 21:50
it is an email though, so maybe I can provide a fake utmp value (i.e. /email), but what do I put for utmr? – Antony Mar 7 '12 at 18:37
1  
I'm testing with just these parameters and it seems to not work, i wonder if requirements have changed? – boomhauer Sep 17 '12 at 15:26
Yes, it appears they have changed. Try 81bronco's answer for the new minimum. – Turadg Sep 18 '12 at 16:47

The reference that describes all of the parameters that the Google Analytics tracking GIF allows is here. Use it to build an <img> tag in your email that references the GA GIF.

According to this post, the minimum required fields are:

  • utmwv=4.3
  • utmn=<random#>&
  • utmhn=<hostname>&
  • utmhid=<random#>&
  • utmr=-&
  • utmp=<URL>&
  • utmac=UA-XXXX-1&
  • utmcc=_utma%3D<utma cookie>3B%2B_utmz%3D<utmz cookie>%3B
share|improve this answer

It sounds like you are using campaign tracking for GA but also want to know how many opens there were. This is possible to do with Google Analytics, since they track pageviews or events by use of pixel tracking as all (I think?) email tracking does. You cannot use javascript, however, since that will not execute in an email.

Using Google Analytics pixel tracking: The easiest way would be to use browser developer tools such as Firebug for Firefox or Opera's Dragonfly to capture a utm.gif request and copy the URL. Modify the headers to suit your needs. You can count it either as an event or pageview. If you count it as an event it should look something like this:

http://www.google-analytics.com/__utm.gif?utmwv=4.8.6&utmn=1214284135&utmhn=www.yoursite.com&utmt=event&utme=email_open&utmcs=utf-8&utmul=en&utmje=1&utmfl=10.1%20r102&utmdt=email_title&utmhid={10-digit time code}&utmr=0&utmp=email_name&utmac=UA-{your account}

You can use this to understand what describes what in the headers.

share|improve this answer
Yes I was thinking about registering virtual pageviews... but was hoping there was a standard mechanism that would tie nicely into my campaigns. After some digging, looks like google used to support this, but gave up several years ago with so many mail clients not opening images. – at. Dec 16 '10 at 3:57
That's a good point; it's not uncommon to see higher page visits than opens. Most mainstream clients, particularly those suited for corporate environments, don't show images by default. – vee_ess Dec 16 '10 at 20:25
The reason most email clients doesn't show images by default is to mitigate spammers that can use that to automatically detect valid emails. – Tiago Dec 20 '10 at 16:28

Not possible from regular email.

After having read the answers here and researching elsewhere, the only real solution I have found involves a server script which makes the utm.gif request. This seems to be a hard requirement because it is the only proper way to get the session cookies relayed as part of that request.

Even so, many users have a different client for email vs. web, so you won't always connect the email load (one set of cookies, managed by the email client) with a click on that email (another set, managed by the actual web browser).

At least one should be able to get a count of opens.

Looks like a nice python implementation of such - with django wrapper.

share|improve this answer

So i'll assume that the email contains a link to your Site. Certainly GA can record how often that link is clicked because clicking the link will open the page in turn causing the function *_trackPageview()* to be called, which is recorded by GA as a pageview.

So as long as that page has the standard GA page tag, no special configuration is required--either to the GA code in your web page markup or to the GA Browser. The only additional work you have to do is so that you can distinguish those page views from page views by visitors from another source.

To do that, you just need to tag this link. Unless you have your own system in place and it's working for you, i recommend using Google URL Builder to do this for you. Google URL Builder is just a web-form in which you enter descriptive terms for your marketing campaign: Campaign Source, Campaign Medium, Campaign Content, Campaign Name. Once you've entered values for each of these terms, as well as entered your Site's URL, Google will instantly generate a 'tagged link' for you (by concatenating the values to your Site's URL).

This URL generated by Google URL Builder is the link that would be placed in the text of your marketing email.

share|improve this answer
Great tool, wasn't aware of it... but I was asking about opens, not clicks. – at. Dec 16 '10 at 8:37
I know what you were asking about. In this context, these two are the same. Here's why: to GA, an 'open' as you call it, is just a page loading. This in turn causes the call to trackPageview which increments the page view count by +1. In this context (your Q) the 'event' responsible for this is clicking the link. – doug Dec 16 '10 at 9:25
3  
Clearly he's talking about EMAIL opens, not page opens for the site that the email links to. – ebynum Oct 6 '11 at 20:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.