0
我正在使用Prestashop。我想在用戶購買物品時發送短信。我可以使用Mvaayoo SMS集成API嗎?怎麼樣?在Prestashop購買商品時發送短信
這是我的PHP代碼發送短信:
<?php
$ch = curl_init();
$user="[email protected]: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);
?>