Skip to content

Instantly share code, notes, and snippets.

@zettamax
Last active August 29, 2015 14:22
Show Gist options
  • Save zettamax/9812f4bd76dc8e38b7a6 to your computer and use it in GitHub Desktop.
Save zettamax/9812f4bd76dc8e38b7a6 to your computer and use it in GitHub Desktop.
<?php
$cid = $this->data['reader_id'] . '.' . $this->data['reader_id'];
$view->trackingOpensUrl = 'http://www.google-analytics.com/collect?' . http_build_query(
[
'v' => '1',
'cid' => $cid,
'tid' => 'UA-1113296-75',
'uid' => $this->data['reader_id'],
't' => 'event',
'ec' => 'email',
'ea' => 'open',
'el' => $campaignName,
'cs' => 'newsletter',
'cm' => 'email',
'cn' => $campaignName,
'cc' => 'open',
'ni' => '1',
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment