如何更改简报取消订阅链接文本

时间:2013-04-18 14:14:29

标签: asp.net content-management-system kentico

我使用宏作为 {%UnsubscribeLink %} 取消订阅简报。

我想在用户收到简报时更改此链接的文字。

这次显示为“取消订阅”。如何更改此文本值?

1 个答案:

答案 0 :(得分:0)

我建议您使用其他宏,该宏仅返回取消订阅URL,并自行创建取消订阅链接文本。

确切的宏取决于Kentico版本。这肯定适用于v11 / v1。

<a href="{% EmailFeed.UnsubscribeFromEmailFeedUrl #%}" target="_blank">YOUR TEXT</a>

更复杂

<td>
  We hope you found this message to be useful.
  However, if you&#39;d rather not receive these emails in the future,
  please <a href="{% EmailFeed.UnsubscribeFromEmailFeedUrl #%}" target="_blank" 
  style="color: #000000;">unsubscribe</a> from this newsletter.
  You can also unsubscribe from <a href="{% EmailFeed.UnsubscribeFromAllEmailFeedsUrl #%}" target="_blank" style="color: #000000;">all marketing emails</a>.
</td>

Link to official documentation