Magento – Magento newsletter unsubscribe link not working

magento-1.9newsletter

I wanted to add a unsubscribe link to the bottom of the newsletter.
the magento default

{{var subscriber.getUnsubscriptionLink()}}">{{var
subscriber.getUnsubscriptionLink()}}

It generates the link

https://example.com/nl/newsletter/subscriber/unsubscribe/

Which redirects to

https://example.com/nl/newsletter/subscribed#.WR3C02grL4Y

And the user is not unsubscribed from the newsletter.

Best Answer

I never use Magento to send newsletter, you can add this at the bottom of your email template and it should work

<a href="{{var subscriber.getUnsubscriptionLink()}}">
{{var subscriber.getUnsubscriptionLink()}}
</a>