A big issue with email tracking is that is breaks caching. When you click on a tracked link in an email and the user ends up at http://example.com/page.html?mkt_tok=[unique_for_every_user], it makes the page uncacheable, hammers servers, and prevents any CDN from working properly. When sending out a million emails at once, this quickly becomes an issue.
Is there an option to have Marketo add mkt_tok as an anchor / put it in the hash?
For some perspective, Google Univerisal Analytics allows this option https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#allowAnchor.
If that isn't available, is there an option to remove mkt_tok completely? Is the only purpose to instantly associate the lead when the user clicks on the link? If so, I could include the needed info in the anchor of all my links manually and call associateLead myself when the user hits the site.