Hello all,
I want to integrate manually defined URL Parameters for tracking purposes. Therefore, I added a liquid code in the email settings as a URL parameter value that checks if the static tracking variable exists and if so to use it as URL parameter. I then added some liquid in the email to capture the values:
Workspace settings > URL parameters
KEY: utm_content
VALUE: {% if email_content %}{{email_content}}{% endif %}
{% capture email_content %}sale_autumn{% endcapture %}
Turns out, this does not work. utm_content is always empty. Is there any chance I can make this work?
Notes: I don’t want to use {{message.name}} or {{campaign.name}} and I tried it with “assign” instead of “capture”.
Thank for your help