Yes, but we have been having issues the past few days with our email creation platform and Marketo reports not showing. I will check again in a day or so to see if anything has changed. Thanks!
Can you explain more by what you mean when you say add the protocol :// outside of the token? So for my client survey URL token, does it have to say something like:
://{{lead.Client Survey URL}}
Or is there more that I need to include? Do I need to adjust the HTML? I'm using this URL token in buttons also.
thanks!
The protocol is the https:// or http:// in front of the URL. You'd want to include that outside the token value while adding it in the <a> tag so clicks on it are tracked. e.g., if {{lead.Client Survey URL}} has www.example.com, then while adding it in the email CTA, you should add it as per below:
<a href="https://{{lead.Client Survey URL}}"> Click here </a>
If you have protocol included in the field, you'd want to remove it first, and then add it in front of the URL, instead of including it as part of the token value itself. I hope this helps you. Let us know if you have questions.
thank you that's very helpful.