2016-03-07 55 views
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); 
?> 

回答

2

配售API代碼就像用戶註冊,新的訂單,訂單狀態的變化將是沉重的每個事件。

您可以使用任何免費短信加載項,如Spring Edge Prestashop sms add-on,這將使您的方式更容易。

只需要安裝和配置從管理片區的事件:在訂單確認

  • 短信。
  • 訂單發貨上的短信。
  • 用戶註冊短信。
相關問題