短信在促銷活動(dòng)中的應(yīng)用
優(yōu)質(zhì)的會(huì)員服務(wù)短信發(fā)送平臺(tái)壹瘟,為企業(yè)矿瘦、店鋪提供快速便捷的用戶運(yùn)營服務(wù)掐暮,群發(fā)短信廣泛適用于開展促銷蝎抽、打折、老用戶回饋等優(yōu)惠信息發(fā)布路克,提升成交量
短信營銷平臺(tái)優(yōu)勢
營銷短信開發(fā)資料
PHP對接短信營銷接口DEMO示例
本文為您提供了PHP語言版本的短信營銷接口對接DEMO示例
//接口類型:無線營銷短信接口樟结,支持發(fā)送會(huì)員營銷短信。
//賬戶注冊:請通過該地址開通賬戶http://user.ihuyi.com/?exClaO
//注意事項(xiàng):
//(1)調(diào)試期間精算,請仔細(xì)閱讀接口文檔瓢宦;
//(2)請使用 APIID 及 APIKEY來調(diào)用接口,可在會(huì)員中心獲然矣稹驮履;
//(3)該代碼僅供接入無線短信接口參考使用,大家可根據(jù)實(shí)際需要自行編寫
header("Content-type:text/html; charset=UTF-8");
function Post($curlPost,$url){
? ? ? ? $curl = curl_init();
? ? ? ? curl_setopt($curl, CURLOPT_URL, $url);
? ? ? ? curl_setopt($curl, CURLOPT_HEADER, false);
? ? ? ? curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
? ? ? ? curl_setopt($curl, CURLOPT_NOBODY, true);
? ? ? ? curl_setopt($curl, CURLOPT_POST, true);
? ? ? ? curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
? ? ? ? $return_str = curl_exec($curl);
? ? ? ? curl_close($curl);
? ? ? ? return $return_str;
}
function xml_to_array($xml){
? ? $reg = "/<(\w+)[^-->]*>([\\x00-\\xFF]*)<\\/\\1>/";
? ? if(preg_match_all($reg, $xml, $matches)){
? ? ? ? $count = count($matches[0]);
? ? ? ? for($i = 0; $i < $count; $i++){
? ? ? ? $subxml= $matches[2][$i];
? ? ? ? $key = $matches[1][$i];
? ? ? ? ? ? if(preg_match( $reg, $subxml )){
? ? ? ? ? ? ? ? $arr[$key] = xml_to_array( $subxml );
? ? ? ? ? ? }else{
? ? ? ? ? ? ? ? $arr[$key] = $subxml;
? ? ? ? ? ? }
? ? ? ? }
? ? }
? ? return $arr;
}
$target = "http://api.yx.ihuyi.com/webservice/sms.php?method=Submit";
$mobile = '136xxxxxxxx';//手機(jī)號(hào)碼廉嚼,多個(gè)號(hào)碼請用,隔開
$post_data = "account=用戶名&password=密碼&mobile=".$mobile."&content=".rawurlencode("尊敬的會(huì)員玫镐,您好,夏季新品已上市怠噪,請關(guān)注恐似。退訂回TD【互億無線】");
//查看用戶名 登錄用戶中心->營銷短信>產(chǎn)品總覽->API接口信息->APIID
//查看密碼 登錄用戶中心->營銷短信>產(chǎn)品總覽->API接口信息->APIKEY
$gets =? xml_to_array(Post($post_data, $target));
if($gets['SubmitResult']['code']==2){
? ? echo '提交成功';
}