添加短信api以及wooCommerce电子邮件发送

时间:2013-11-28 07:50:29

标签: php wordpress-plugin sendmail woocommerce sms-gateway

我正在为我的电子商务网站开发一个短信网关,我正在网站上使用Woo Commerce插件。我从www.sms19.info购买了SMS API。因此,我想使用该api发送客户预订的订单状态的短信通知,甚至我想编辑正在发送的电子邮件格式。要编辑我尝试编辑的电子邮件格式

  

类/电子邮件/类-WC-电子邮件客户note.php

woo Commerce的

文件但输出没有任何变化。

网站链接 aamazedeals.com

我已附上发送的电子邮件格式

http://s28.postimg.org/upo7jfoz1/Untitled_1.jpg

所以,请帮助我,我应该在哪里编写sms api的代码,用于发送短信通知以及发送的电子邮件通知。 我坚持过去3天这个问题,请帮帮我。

1 个答案:

答案 0 :(得分:0)

您可以直接编辑您的文件,在此行之前或之后$this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );您可以添加短信发送功能,如

$this->sendSMS( $this->get_smsrecipient(), $this->get_smsfrom(), $this->get_smscontent());

这不是更新友好