If you are experiencing issues with the click tracking setting not replacing your original links, please take a look at your link formatting. Links must be in the proper format in order for our click tracking setting to find and replace them: Links must be within an HTML <a>
tag with the href
argument within the tag. There must not be spaces around the =
in the href
attribute, the URI must be quoted and must be preceded by "http://
or "https://
. Here are some example links that will be properly replaced by our click tracking app:
<a href="http://www.massmailer.io">MassMailer</a>
<a href="https://massmailer.io">MassMailer</a>
<a target="_blank" href="https://massmailer.io">MassMailer</a>
The following links, even though they may still resolve, will not be captured or replaced by our click tracking system:
<a href="massmailer.io">MassMailer</a>
<a href="www.massmailer.io">MassMailer</a>
<a href= http://www.massmailer.io>MassMailer</a>
<a href = "https://massmailer.io">MassMailer</a>