Hi all,
I’m trying to customize order confirmation email.
I’m trying to fetch transaction gateway so that, depending on its value, the email should some text instead of another.
The problem is, it doesn’t even work in the “else”, where i try to show up the rendered object. Instead, it only shows the “abc”.
{% case transaction.gateway_display_name %}
{% when "Bonifico" %}
xxx
{% when "Postagiro" %}
yyy
{% when "Bollettino c/c" %}
zzz
{% else %}
{{ transaction.gateway_display_name }} abc
{% endcase %}