Hi Sanford,
Wondering if I can get some insight on this. We use Knak to design emails, then sync them to MKTO. In Knak, we append every link with a universal UTM code, eg;
utm_source=Marketo&utm_medium=Email&utm_campaign=tax appeal&utm_content=Prospect Conversion&id=G92A0620E02
In the MKTO editor, it appears in the HTML view in the content block as:
<p style="margin: 0 0; mso-line-height-alt: 21px;"><strong><a href="https://www.worldanimalprotection.org.au/keepthemwild?utm_source=Marketo&utm_medium=Email&utm_campaign=tax appeal&utm_content=Prospect Conversion&id=G93A0620E02" target="_blank" rel="noopener" style="text-decoration: none; color: #ea6c11;"><span style="font-size: 15px;">Your kind gift today could help keep wild animals wild, give lives worth living to those who have been abused, and protect vulnerable animals around the world.</span></a></strong></p>
</div>
where the UTM codes are evident.
In the live sample email test, though, the link then appears in the search bar as:
https://donate.worldanimalprotection.org.au/campaigns/keep-them-wild/?id=G93A0620E02&mkt_tok=eyJpIjoiTVRZeVpUazFa
SO, questions - in the MKTO token, are the UTM values stored and readable for GA? Or, have they been wiped so that MKTO can operate it's own tracking? Will GA pick up anything from this?
Thanks,
Lucas
This is all happening on your webserver. It's 301 redirecting the initial URL to what appears to be your "canonical" (i.e. more authoritative) URL, but it only retains certain query params.
So the URL:
https://www.worldanimalprotection.org.au/keepthemwild?utm_source=Marketo&utm_medium=Email&utm_campaign=tax%20appeal&utm_content=Prospect%20Conversion&id=G93A0620E02&mkt_tok=anything
Gets redirected to:
https://donate.worldanimalprotection.org.au/campaigns/keep-them-wild/?id=G93A0620E02&mkt_tok=anything
Only keeping the id and mkt_tok params, as presumably they were configured to be retained (again note this config is on your server, www.worldanimalprotection.org.au, Marketo's not in the picture at that point).
If you go straight to donate.worldanimalprotection.org.au:
https://donate.worldanimalprotection.org.au/campaigns/keep-them-wild/?id=G93A0620E02&utm_source=Marketo&utm_medium=Email&utm_campaign=tax%20appeal&utm_content=Prospect%20Conversion&id=G93A0620E02&mkt_tok=anything
Then the query params are all kept. So it's very much about the www.server.