Magento - 在新的oder验证电子邮件中显示自定义客户属性

时间:2011-09-02 15:01:52

标签: magento

如何使用Magento ver在新的oder验证电子邮件中显示自定义客户属性的值。 1.4.1.1

我已将此代码添加到/sales/model/order.php:

public function getCustomerNumber() {

if (!$this->getCustomerId()) return;
$customer = Mage::getModel('customer/customer')->load( $this->getCustomerId());
$customer = $customer->getData('customer_number');
return ($customer);

{{var order.getCustomer()}}按顺序发送电子邮件模板,但它得到“对象”一词,而不是正确的值。

感谢您的帮助。

0 个答案:

没有答案