It looks like most system emails use snippets to automate the link in the button. A few examples:
<a href="{post_url}"
<a href="{topic_url}"
<a href="{invite_url}"
Is it possible to add a UTM on the ends of those automated URLs for tracking purposes in Google Analytics?
Typically for a UTM, you just add the details to the end of the URL?
If I add, for example, I added this right behind the snippet, will it work?
?utm_source=system_email
end result would be
<a href="{invite_url}?utm_source=system_email" and then the rest of the html code for styling the button / link
Would that work?