magento如何仅将订单电子邮件发送给管理员(而不是客户)

发布于 2024-10-11 20:52:33 字数 153 浏览 3 评论 0原文

我希望 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

離殇 2024-10-18 20:52:33

好消息:这很容易。坏消息:你不能在界面中实现它,你只能对其进行编程。

在 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.

简单 2024-10-18 20:52:33

多谢!

我只是评论了这个区域,它就有效了。

/* $sendTo = 数组(
大批(
'电子邮件' => $this->getCustomerEmail(),
'名字' => $客户名称

);
*/

    if ($copyTo && $copyMethod == 'copy') {
        foreach ($copyTo as $email) {
            $sendTo[] = array(
                'email' => $email,
                'name'  => null
            );
        }
    }

thanks a lot!

I just commentet out this area, and it works.

/* $sendTo = array(
array(
'email' => $this->getCustomerEmail(),
'name' => $customerName
)
);
*/

    if ($copyTo && $copyMethod == 'copy') {
        foreach ($copyTo as $email) {
            $sendTo[] = array(
                'email' => $email,
                'name'  => null
            );
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文