我有一个Mageneto 1.4安装程序,可以在订单处于暂停状态时发送自定义电子邮件。这一切都很完美,但它只会发送英文电子邮件。当订单从英国和德国商店进入时,他们仍然会收到英文电子邮件。
我目前使用的holdAction方法如下所示:
public function holdAction()
{
if ($order = $this->_initOrder()) {
try {
$order->hold()
->save();
$this->_getSession()->addSuccess(
$this->__('Order was successfully put on hold.')
);
$emailTemplate = Mage::getModel('core/email_template')
->loadDefault('customer_payment_declined');
$emailTemplateVariables = array();
$emailTemplateVariables['order'] = $order;
$emailTemplateVariables['customername'] = $order->getCustomerName();
$processedTemplate = $emailTemplate->getProcessedTemplate($emailTemplateVariables);
$emailTemplate->setSenderName('example.com');
$emailTemplate->setSenderEmail('customerservice@example.com');
$emailTemplate->setTemplateSubject('Your order – '.$order->getIncrementId());
$emailTemplate->send($order->getCustomerEmail(),$order->getCustomerName(), $emailTemplateVariables);
}
catch (Mage_Core_Exception $e) {
$this->_getSession()->addError($e->getMessage());
}
catch (Exception $e) {
$this->_getSession()->addError($this->__('Order was not put on hold.'));
}
$this->_redirect('*/sales_order/view', array('order_id' => $order->getId()));
}
}
我尝试过以各种方式通过Locale,但我没有运气。
有什么建议吗?
答案 0 :(得分:0)
不同语言的不同电子邮件模板在我们的某个网站上运行良好。这也是Magento v.1.4
我们拥有的是两套语言环境:
应用程序/区域/ nl_NL /模板/电子邮件/
应用程序/区域/ EN_US /模板/电子邮件/
我们还为每个网站范围设置了不同的区域设置:
配置 - >一般 - >区域设置选项