I am using unsubscribe group to send email using dynamic template but the link isnt clickable
dynamic_template_data = {
"asmGroupUnsubscribeUrl": "<%asm_group_unsubscribe_url%>",
}
I have used the dynamic template data in html , have created a unsubscribe group and sent group id like this:
data = {"personalizations": [{
"to": [
{
"email": email
}
],
"dynamic_template_data": dynamic_template_data,
"asm": {
"group_id":111,
"groups_to_display": [111],
},
}....
IS there anything i should add or doing something wrong? I am using it in html as: Tried many things but nothing worked
<a href="{{asmGroupUnsubscribeUrl}}">Unsubscribe</a>