使用行项目属性自定义订单确认电子邮件
Customize Order confirmation email with line item properties
我正在自定义订单确认电子邮件,但当我尝试发送订单项时 属性,它在一行中显示为名称和值,如下所示。 宽度 900。
我想以 name: value 格式显示 Width: 900。
我该怎么做?
{% for line in subtotal_line_items %}
{% for p in line.properties %}
<span>{{ p }}</span><br/>
{% endfor %}
{% endfor %}
line.properties
会给你一个 json 对象。试试这个
{% for line in subtotal_line_items %}
{% for p in line.properties %}
<span>{{ p.first }}: {{ p.last }}</span><br/>
{% endfor %}
{% endfor %}
我正在自定义订单确认电子邮件,但当我尝试发送订单项时 属性,它在一行中显示为名称和值,如下所示。 宽度 900。 我想以 name: value 格式显示 Width: 900。
我该怎么做?
{% for line in subtotal_line_items %}
{% for p in line.properties %}
<span>{{ p }}</span><br/>
{% endfor %}
{% endfor %}
line.properties
会给你一个 json 对象。试试这个
{% for line in subtotal_line_items %}
{% for p in line.properties %}
<span>{{ p.first }}: {{ p.last }}</span><br/>
{% endfor %}
{% endfor %}