最近搜索


没有最近搜索

Mario Zaizar's Avatar

Mario Zaizar

已加入2021年5月06日

·

最后活动2025年2月18日

关注

0

关注者

0

活动总数

21

投票

7

订阅

13

活动概览

的最新活动 Mario Zaizar

Mario Zaizar 进行了评论,

评论Ticket management

Following on Sabra's post.

You can only use the contains keyword to match the brand name. This would simplify your case code, still matching the template but ignoring the extra "This email is a service from brand name" HTML from the footer placeholder.

So, instead of:

{% case footer %}
{% when 'This email is a service from ACME.' %}
Custom CSS and HTML here.
{% endcase %}

Use this:

{% if footer contains 'Brand1' %} 
Custom CSS and HTML here.
{% endif %}

查看评论 · 已于 2023年4月04日 发布 · Mario Zaizar

0

关注者

0

投票

0

评论