Hello Marketo Nation,
If I pass a secure URL through to a field in Salesforce, and that field is synced with Marketo; can I use a token to pull that secure URL into an email? If so, how would I go about doing that?
Thanks in advance for your help.
Solved! Go to Solution.
If you use a text token, you need to put the in the email not in the token (e.g. <a href="{{lead.URL}}>Click Here</a>. If you use a rich text token, that is not a problem.
If you use email script token than no need to add http in your url string. Call it using href="{{lead.url}}" in your anchor tag.
If you use a text token, you need to put the in the email not in the token (e.g. <a href="{{lead.URL}}>Click Here</a>. If you use a rich text token, that is not a problem.
Thanks a ton Kristen!