Magento - 如何到达商店国家?

Biz*_*oss 4 magento

如何获得商店国家,在交易电子邮件中显示它?

非常感谢.

Ser*_*gey 14

要首先获得国家/地区对象,您必须获取当前商店的国家/地区代码

$countryCode = Mage::getStoreConfig('general/country/default');
Run Code Online (Sandbox Code Playgroud)

然后得到国家对象

$country = Mage::getModel('directory/country')->loadByCode($countryCode);
Run Code Online (Sandbox Code Playgroud)

当您拥有该对象时,将其分配给电子邮件模板中的变量没有问题

$mailer = Mage::getModel('core/email_template_mailer');
$mailer->setTemplateParams(array(
    'country' => $country
));
Run Code Online (Sandbox Code Playgroud)