如何使用自定义用户变量事务电子邮件模板在Magento?(How to use custom cus

2019-09-20 03:17发布

我增加了一些自定义变量客户,我想在电子邮件模板中使用它们。

这里的例子中,我如何在我的安装程序中加入一个变量客户:

$setup->addAttribute('customer', 'companyname', array(
    'input'         => 'text',
    'type'          => 'varchar',
    'label'         => 'Company name',
    'visible'       => 1,
    'required'      => 1,
    'user_defined' => 1,
));

$setup->addAttributeToGroup(
 $entityTypeId,
 $attributeSetId,
 $attributeGroupId,
 'companyname',
 '999'  //sort_order
);

$oAttribute = Mage::getSingleton('eav/config')->getAttribute('customer', 'companyname');
$oAttribute->setData('used_in_forms', array('adminhtml_customer','customer_account_create'));
$oAttribute->save();

我尝试使用电子邮件模板这个变量:

{{var order.getCustomer().getCompanyname()}}

但它没有显示。 如何使它工作?

Answer 1:

我做了与像下面的代码类似的任务:

$setup->addAttribute('customer', 'attr_name', array(
    'type'      => 'int',
    'input'     => 'select',
    'label'     => 'Attr label',
    'global'    => 1,
    'visible'   => 1,
    'required'  => 1,
    'default'   => '0',
    'user_defined'      => 1,
    'visible_on_front'  => 1,
));
if (version_compare(Mage::getVersion(), '1.6.0', '<='))
{
      $customer = Mage::getModel('customer/customer');
      $attrSetId = $customer->getResource()->getEntityType()->getDefaultAttributeSetId();
      $setup->addAttributeToSet('customer', $attrSetId, 'General', 'attr_name');
}
if (version_compare(Mage::getVersion(), '1.4.2', '>='))
{
    Mage::getSingleton('eav/config')
        ->getAttribute('customer', 'attr_name')
        ->setData('used_in_forms', array('customer_account_create'))
        ->save();
}

接下来测试了它(现在)“订购新的”电子邮件中{{var order.getCustomer().getAttrName()}}并已得到了正确的值。
试试吧,可能它可以帮助你。



文章来源: How to use custom customer variables in transactional email templates in magento?
标签: magento