首页 > 解决方案 > Sendgrid退订链接不可点击?

问题描述

我正在使用取消订阅组使用动态模板发送电子邮件,但链接不可点击

 dynamic_template_data = {
     
                    "asmGroupUnsubscribeUrl": "<%asm_group_unsubscribe_url%>",

                }

我在 html 中使用了动态模板数据,创建了一个取消订阅组并发送了这样的组 ID:

 data = {"personalizations": [{
        "to": [
            {
                "email": email
            }
        ],

        "dynamic_template_data": dynamic_template_data,
        "asm": {
            "group_id":111,
            "groups_to_display": [111],
        },

    }....

有什么我应该添加或做错什么吗?我在 html 中使用它作为:尝试了很多东西,但没有任何效果

   <a  href="{{asmGroupUnsubscribeUrl}}">Unsubscribe</a>

标签: sendgridsendgrid-templates

解决方案


推荐阅读