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?
|
|
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. |
|||||||||||||||
|
|
As others have pointed out, you can't use Javascript in email. The actual tracking is done by a request for 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:
|
|||||||||||
|
|
The reference that describes all of the parameters that the Google Analytics tracking GIF allows is here. Use it to build an According to this post, the minimum required fields are:
|
|||
|
|
|
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:
You can use this to understand what describes what in the headers. |
|||||||
|
|
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. |
|||
|
|
|
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. |
|||||||||
|
