Magento电子邮件模板格式发票日期

时间:2010-06-21 13:59:29

标签: php email templates magento

我正在尝试将日期格式的日期应用于Magento电子邮件。我可以用

获取发票日期
{{var invoice.created_at}}

但这给了我“2010-05-21 15:46:24”。我希望21.05.2010和PHP在模板中不起作用。

我对Magento完全不熟悉所以请耐心等待:-P

格尔茨 斯潘基

2 个答案:

答案 0 :(得分:1)

我认为你必须覆盖发送电子邮件的方法,将日期作为变量传递给模板(使用sendTransactional()方法的第五个参数)。

答案 1 :(得分:0)

你也可以调用order.getCreatedAtStoreDate() - 函数:

Order date: {{var order.getCreatedAtStoreDate()}}