我不相信Magento有一个开箱即用的方式发送电子邮件通知收到付款的所有者,那么有什么办法可以编程吗?
到目前为止,我已阅读this,但看起来它可能更专注于向客户而不是供应商发送电子邮件;和this但除了被完全丢失(因为它的声音是OP),一个人说接受的答案有点过时,我也不确定这是我需要的。
答案 0 :(得分:3)
基本上,你需要的是(惊喜)一个观察者模块来做到这一点。此外,这是完全相同的工作in one of the links you provided。
要制作准系统观察者模块,您只需要三个文件:
/app/etc/modules/Electricjesus_Notifyowner.xml
<?xml version="1.0"?>
<config>
<modules>
<Electricjesus_Notifyowner>
<active>true</active>
<codePool>local</codePool>
</Electricjesus_Notifyowner >
</modules>
</config>
/app/code/local/Electricjesus/Notifyowner/etc/config.xml
<?xml version="1.0"?>
<config>
<modules>
<Electricjesus_Notifyowner>
<version>0.1.0</version>
</Electricjesus_Notifyowner>
</modules>
<global>
<models>
<notifyowner>
<class>Electricjesus_Notifyowner_Model</class>
</notifyowner>
</models>
<events>
<sales_order_payment_pay>
<observers>
<notifyOwnerEvent>
<class>notifyowner/observer</class>
<method>notifyOwnerEvent</method>
</notifyOwnerEvent>
</observers>
</sales_order_payment_pay >
</events>
</global>
</config>
/app/code/local/Electricjesus/Notifyowner/Model/Observer.php
<?php
class Electricjesus_Notifyowner_Model_Observer
{
public function notifyOwnerEvent($observer)
{
// parameters you can get from the $observer parameter:
// array(’payment’ ? $this, ‘invoice’ ? $invoice)
$payment = $observer->getPayment();
$invoice = $observer->getInvoice();
// derivative data
$order = $invoice->getOrder(); // Mage_Sales_Model_Order
$ownerEmail = 'owner@shop.com';
/*
- build data
- build email structure
- send email via any php mailer method you want
*/
return $this; // always return $this.
}
}
您也可以使用其他事件代替sales_order_payment_pay
(请参阅config.xml)。有关事件的半完整列表及其参数,请参阅this list。在this document上,有一些技术可以检查/获取当前事件列表及其参数的更新。
我建议使用Zend_Mail在观察者中进行邮件。没什么特别的,我只是偏向于Zend的东西。
http://framework.zend.com/manual/en/zend.mail.html
---编辑
如果您想要一个现成的扩展程序(以及更多),如果您不介意付费,可以查看:
http://www.magentocommerce.com/magento-connect/admin-email-notifications.html