Reputation: 59
I've got Subscription Tracking ON, in "UNSUBSCRIBE CONTENT - HTML BODY" section - my custom HTML text. But in sent emails I'm getting standard "Unsubscribe From This List | Manage Email Preferences" footer, which is not my custom HTML content. Can't understand what I am missing here.
Upvotes: 1
Views: 4849
Reputation: 1506
That setting refers to the global unsubscribe link. The "Unsubscribe From This List" link is a result of having unsubscribe groups configured. This page documents fairly well how you can replace the default links with your own.
https://sendgrid.com/docs/ui/sending-email/index-suppressions/
For example, a custom unsubscribe link in your template could look like this:
<a href="<%asm_group_unsubscribe_raw_url%>">unsubscribe</a>
Your template engine may URL encode the tag, so be sure to keep the raw tag intact. The default links will then disappear.
Upvotes: 8