Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
客户的 IP 地址存储在 Magento(1.7.0.2 版)后端的订单记录中,但它不能作为变量添加到新订单确认电子邮件中。
谁能帮我更改电子邮件模板,以便我可以将此字段添加到电子邮件中?
非常感谢
可能晚了 6 个月,但这是你要找的吗?
$order->getRemoteIp()
我没有在电子邮件模板的上下文中尝试过,但我猜是这样的:
{{var remote_ip}}
或失败,请尝试:
{{var order.getRemoteIp()}}
FWIW 我找到了 app/design/adminhtml/default/default/template/sales/order/view/info.phtml 中使用的 getRemoteIp() 函数。