在Magento订购邮件中显示生日


Showing the Birthdate in Magento Order-Mail

我想在客户的订单邮件中显示客户的生日。在注册邮件中它是

{{var customer.dob}}

但是这在Order-Mail中不起作用。还:

{{var order.getCustomerDob ()}}

是行不通的。我在网上找不到正确的语法。你有线索吗?或者我是否需要为此编写一个额外的方法,如果需要,在哪里?

试试这个:

$customers = Mage::getModel('customer/customer')  
  ->getCollection()  
  ->addAttributeToSelect('firstname')  
  ->addAttributeToSelect('lastname')  
  ->addAttributeToFilter('dob',array('like'=>'%-'.date('m-d').' %'))  
  ->load();