Hy all,
i have a strange issue with my html code only after the campaign was sent.
If i do a test email it work and work also if i do a web version check directly from mailwizz panel but when i send my campaign all link are changed with wrong code, see below an example :
Right link
Wrong link
As you can see only a single part of the url come with char changed, other part take the right encode.
You could match first offer_id%3D123%26 with the second one offer_id=123&
I've solved adding %25 before each % but is possible enabling a check on test email or web preview ?
i have a strange issue with my html code only after the campaign was sent.
If i do a test email it work and work also if i do a web version check directly from mailwizz panel but when i send my campaign all link are changed with wrong code, see below an example :
Right link
Code:
http://mylink1/aff_c?offer_id=123&aff_id=1234&file_id=5678&url=http%3A%2F%2Fmylink2%2Faff_c%3Foffer_id%3D123%26aff_id%3D1234%26file_id%3D5678
Wrong link
Code:
http://mylink1/aff_c?offer_id=123&aff_id=1234&file_id=5678&url=http%3A%2F%2Fmylink2%2Faff_c?offer_id=123&aff_id=1234&file_id=5678
As you can see only a single part of the url come with char changed, other part take the right encode.
You could match first offer_id%3D123%26 with the second one offer_id=123&
I've solved adding %25 before each % but is possible enabling a check on test email or web preview ?
Last edited: