Google Analytics - Measurement Protocol implementation

In a way mwz does this, but if you want to set all these in the google analytics platform and then use those extra variables, there is probably a way.
So far, you can use
"GA tracking code id"
in
settings->common.
 
Ok, I've found a weird but working solution for this.
I'm just adding this pixel to all of my email templates:
HTML:
<img src="https://www.google-analytics.com/collect?v=1&tid={YOUR GOOGLE ANALYTICS ID}&cid=[SUBSCRIBER_UID]&t=event&ec=email&ea=open&ci=[CAMPAIGN_UID]&cm=email&cs=[CAMPAIGN_UID]&ck=custom_tag" />
So you can now track all opens in Google Analytics panel :)
 
here is the piece i have added in which is slightly different than above which, at least for me, has worked slightly better:
Code:
<img alt="_ga" src="http://www.google-analytics.com/collect?v=1&amp;tid=[YOUR_GOOGLE_CODE]&amp;cid=%5BSUBSCRIBER_UID%5D&amp;t=event&amp;ec=email&amp;ea=open&amp;cs=newsletter&amp;cm=email&amp;cn=%5BCAMPAIGN_NAME%5D&amp;ck=email_campaign" />

I have this added in: https://YOUR_DOMAIN.COM/maillist/backend/settings/customers/campaigns
 
here is the piece i have added in which is slightly different than above which, at least for me, has worked slightly better:
Code:
<img alt="_ga" src="http://www.google-analytics.com/collect?v=1&amp;tid=[YOUR_GOOGLE_CODE]&amp;cid=%5BSUBSCRIBER_UID%5D&amp;t=event&amp;ec=email&amp;ea=open&amp;cs=newsletter&amp;cm=email&amp;cn=%5BCAMPAIGN_NAME%5D&amp;ck=email_campaign" />

I have this added in: https://YOUR_DOMAIN.COM/maillist/backend/settings/customers/campaigns

In the footer right? http://take.ms/3eRyE
 
Back
Top