以编程方式获取产品库存,提醒客户详细信息

时间:2018-01-19 13:29:21

标签: magento sms magento-1.9 product stock

我必须以编程方式提醒产品库存提醒客户详细信息(电话,退货提醒产品等)。

我知道 Mage_ProductAlert_Model_Observer :: process()会向客户发送电子邮件提醒,Sameway我需要在产品重新库存时向所有客户发送短信(带有SMS API)。

我在 app / code / core / Mage / ProductAlert / Model / Observer.php

中找到了以下代码
public function process() {
        $email = Mage::getModel('productalert/email');
        /* @var $email Mage_ProductAlert_Model_Email */
        $this->_processPrice($email);
        $this->_processStock($email);
        $this->_sendErrorEmail();

        return $this;
    }

在这里,我尝试重写该课程&连接我的SMS API以向客户发送SMS以通知产品库存,但它不起作用。

任何人都可以分享如何获取客户详细信息(手机,产品)吗?以及如何配置SMS API发送短信?

0 个答案:

没有答案