How to construct UNSUBSCRIBE link manually?

FrogFeet

New Member
While I am able to use the tag [UNSUBSCRIBE_URL] successfully, I cannot use either [DIRECT_UNSUBSCRIBE_URL] or [DIRECT_UNSUBSCRIBE_LINK]

I think that the SMTP service that I am using might be interfering with this (they inject their own UNSUBSCRIBE link in every email if you don't include your own)

So I am trying to create an unsubscribe link manually based off of this post: https://forum.mailwizz.com/threads/unique-landing-page-url-for-unsubscribes.7569/post-46796

It's not working and I was wondering if there is an updated way to construct an unsubscribe link?
 
OK, turns out it does work. I was trying to use it in the welcome email. But when I applied the following link in a campaign, it works fine:
Code:
<a href="https://domain.com/index.php/lists/[LIST_UID]/unsubscribe/[SUBSCRIBER_UID]/[CAMPAIGN_UID]/unsubscribe-direct">Unsubscribe</a>

Is there a way to add something similar to a welcome list page?
 
Is there a way to add something similar to a welcome list page?
You can construct it manually, like you did above, in case the tag is not available in the page you're looking for.
Code:
https://domain.com/index.php/lists/[LIST_UID]/unsubscribe/[SUBSCRIBER_UID]
 
Whens users try unsubscribing, i get emailed "

Campaign-Uid:ws177b2ssgf80 / Subscriber-Uid:pf971j4nafdf0 - Unsubscribe request"

How can they auto-unsubscribe?​

 
The unsubscribe header contains both, an option to go to a url and an option to send this email. We also push the url option in front, but in the end, it depends entirely on the email client what they will use.
So MailWizz adds the right code for automatic unsubscribe, its just email clients don't always choose that and they choose the email feature.
 
Back
Top