0

从我们的 Magento 1.7.0 商店,我们想在发送运输交易电子邮件时向 SMS 网关发送电子邮件。我真的不知道该怎么做 - 有什么想法吗?

发送至 SMS 网关的电子邮件应包含以下内容:

短信网关邮箱:432342343@smsgateway.com 标题:客户电话号码 内容:今天我们已发送您的订单

最好的问候,杰斯珀

4

1 回答 1

1

您应该能够观察到该sales_order_status_history_model_save_before事件。从你的观察者内部:

public function observeStatusHistorySave($observer)
{
     $status = $observer->getObject();
     if (!$status->getIsCustomerNotified()) {
         return false;
     }

     $customer = $status->getOrder()->getCustomer();
     sendSms($customer->getTelephone(), "etc...");         
}
于 2012-08-15T21:31:30.670 回答