Magento订单电子邮件中的客户IP地址

时间:2013-08-20 05:45:51

标签: magento magento-1.7

客户的IP地址存储在Magento后端的订单记录中(版本1.7.0.2,但它不能作为添加到新订单确认电子邮件的变量。

任何人都可以帮我更改电子邮件模板,以便我可以将此字段添加到电子邮件中吗?

非常感谢

1 个答案:

答案 0 :(得分:1)

可能晚了6个月,但这是你要找的吗?

$order->getRemoteIp()

我没有在电子邮件模板的上下文中尝试过,但我猜这个:

{{var remote_ip}}

或者失败了,试试:

{{var order.getRemoteIp()}}

FWIW我在app / design / adminhtml / default / default / template / sales / order / view / info.phtml中找到了getRemoteIp()函数。