1
我需要爲貝寶付款發送同樣的電子郵件模板,用於「等待付款」和「取消」,但是當我通知客戶他們有一個待付款它應該說Your order is in pending payment
。如果我在管理員中點擊取消按鈕,電子郵件內容應爲unfortunately your order has been cancelled
。在Magento的同一個電子郵件模板中添加一個條件來修改電子郵件內容
我在郵件模板嘗試這樣做:
{{if order.getStatusLabel() == 'canceled'}}
<p>unfortunately your order has been cancelled</p>
{{else}}<p>Your order is in pending payment</p>
{{/if}}
但unfortunately your order has been cancelled
已經爲這兩種類型的訂單狀態被髮送。
- 我如果條件似乎並不奏效。任何想法爲什麼不呢?
- 的訂單狀態有時會返回取消,有時它返回取消。我不確定它爲什麼不一致!