我正在使用Prestashop。我想在用户购买商品时发送短信。我可以使用Mvaayoo SMS集成API吗?怎么样?
这是我发送短信的PHP代码:
<?php
$ch = curl_init();
$user="emailid@example:password;
$receipientno="9995563285";
$senderID="TEST SMS";
$msgtxt="this is test message , test";
curl_setopt($ch,CURLOPT_URL, "http://api.mVaayoo.com/mvaayooapi/MessageCompose");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "user=$user&senderID=$senderID&receipientno=$receipientno&msgtxt=$msgtxt");
$buffer = curl_exec($ch);
if(empty ($buffer))
{ echo " buffer is empty "; }
else
{ echo $buffer; }
curl_close($ch);
?>
答案 0 :(得分:2)
为用户注册,新订单,订单状态更改等每个事件放置API代码都会很重。
您可以使用任何像Spring Edge Prestashop sms add-on这样的免费短信加载项,这将使您轻松自如。
只需要在Admin-Area中安装和配置事件: