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]
 
Back
Top