magento如何仅将订单电子邮件发送给管理员(而不是客户)
我希望 magento 仅将订单电子邮件发送给管理员而不是客户, 因为客户收到来自另一个系统的电子邮件。
可以将订单邮件发送给客户,或者发送给客户和管理员,但似乎不可能仅将邮件发送给管理员。
如果有人知道该怎么做,我将非常感激。
最好的问候尼科
I want magento to send the order emails only to the admin not to the customer,
because the customer gets an email from another system.
It's possible to send an ordermail to the customer, or to the customer and admin but it seems to be impossible to send the mail only to the admin.
If someone knows how to do it I would be very thankful.
best regards nico
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好消息:这很容易。坏消息:你不能在界面中实现它,你只能对其进行编程。
在 Mage_Sales_Model_Order->sendNewOrderEmail() 中重载发送电子邮件,从那里删除向客户发送。
Good news: it's easy. Bad news: you cannot make it in interface, you can only program it.
Overload sending of emails in Mage_Sales_Model_Order->sendNewOrderEmail(), remove sending to customer from there.
多谢!
我只是评论了这个区域,它就有效了。
/* $sendTo = 数组(
大批(
'电子邮件' => $this->getCustomerEmail(),
'名字' => $客户名称
)
);
*/
thanks a lot!
I just commentet out this area, and it works.
/* $sendTo = array(
array(
'email' => $this->getCustomerEmail(),
'name' => $customerName
)
);
*/