wrong url redirection

I've tried to send a newsletter with Mailwizz and everything works well but the unsubscribe link that's in the case below this one

http://comunicati.mondialpol.it/cam...j4de/2d3d0d86be01fe690aaeb5e588d93b635fbbb598

BUT, if you click on it you're redirected to

http//comunicati.mondialpol.it/campaigns/ky070x6cms12b/track-url/we967troyj4de/2d3d0d86be01fe690aaeb5e588d93b635fbbb598

without the : and I really don't know why.

Sure is some settings somewhere but I really don't know how to fix it.

If you want to try for yourself you'll surely understand.

Thanks!
 
This has been solved, the issue was they made the unsubscribe link like:
Code:
<a href="http://[UNSUBSCRIBE_URL]">Unsubscribe</a>
So they added http:// in front of it, which is wrong since the tag already comes with it's own http:// prefix, so the correct way is:
Code:
<a href="[UNSUBSCRIBE_URL]">Unsubscribe</a>
 
Back
Top