91成人在线播放_欧美一区二区视频在线观看_91精品国产高清久久久久久_国产精品久久亚洲不卡4k岛国


待發短信

在線客服
產品支持 短信寶客服
合作渠道 渠道合作
服務咨詢

4001-021-502

工作時間

9:00-21:00

YouDianCMS 9.1 新增短信寶短信接口

友點CMS系統是一款免費、開源、輕便、安全、專業建站、PC+手機+微官網+小程序+APP五站合一、一站式智能建站平臺。今天小編為大家講解一下YouDianCMS 9.1穩定版這個版本的短信插件該如何開發,短信接口使用的是我們短信寶短信群發平臺,我們短信寶短信群發平臺極其穩定,而且短信發送速度相當快捷,驗證碼和訂單通知在3~5秒就能收到,用戶體驗非常好,注冊就送測試短信。

1:打開項目:\web\themes\default\system\user-setting.html 新增短信寶接口頁面

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 <div class="box-content">
                <table class="boxtable">
                    <tr>
                        <th nowrap="nowrap" style="width:20%">短信寶</th>
                        <td style="width:80%">
                            <select name="SMS_TYPE">
                                <option value="Huyi">短信寶</option>
                            </select>
                            <span style="color:#F30; padding-left:3px;"><a target="_blank" href="https://smsbao.com/reg" >還沒有注冊賬號?立即注冊</a></span>
                        </td>
                    </tr>
                    <tr>
                        <th nowrap="nowrap" style="width:20%">短信寶賬號</th>
                        <td style="width:80%">
                            <input type="text" class="textinput" style="width:270px;" name="SMS_ACCOUNT" value="{$SmsAccount}" />
                            <span class='Caution'>請填寫短信寶賬號</span></td>
                        </td>
                    </tr>
                    <tr>
                        <th nowrap="nowrap" style="width:20%">短信寶密碼</th>
                        <td style="width:80%">
                            <input type="text" class="textinput"  style="width:270px;" name="SMS_PASSWORD" value="{$SmsPassword}" />
                            <span class='Caution'>請填寫短信寶密碼</span>
                        </td>
                    </tr>
                    <tr>
                        <th nowrap="nowrap" style="width:20%">每個IP每天最多能發送幾條短信</th>
                        <td style="width:80%">
                            <input type="text" class="textinput"  style="width:50px;" maxlength="5" name="SMS_IP_MAX" value="{$SmsIpMax}" />
                            <span class='Caution'>請根據實際情況設置,默認值為:20</span>
                        </td>
                    </tr>
                    <tr>
                        <th nowrap="nowrap" style="width:20%">每個手機每天最多能發送幾條短信</th>
                        <td style="width:80%">
                            <input type="text" class="textinput"  style="width:50px;" maxlength="5" name="SMS_NUM_MAX" value="{$SmsNumMax}" />
                            <span class='Caution'>請根據實際情況設置,默認值為:60</span>
                        </td>
                    </tr>
                    <tr>
                        <th nowrap="nowrap" style="width:20%">剩余短信條數</th>
                        <td style="width:80%; padding:8px 0;">
                            <span id="leftnum" style="font-weight:bold;color:blue; margin-right:8px;"></span>
                            <a class="btnSuccess btnSmall" onclick="getLeftNum()">點擊查詢</a>
                        </td>
                    </tr>

3:打開項目 App\Lib\Common\YdSms.class.php 修改成短信寶發送接口

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
public function getLeftNum(){
        $smsapi = "http://www.gjrencai.com/";
        $sendurl = $smsapi."query?u=".$this->AccountName."&p=".md5($this->AccountPassword);
        $result =file_get_contents($sendurl) ;
        $result = explode(',',$result);
        $num = $result[1] ? $result[1] : '';
        if($num > 0 ){
            return $num;
        }else{
            return $num;
        }
    }
    
    public function sendNotifyMessage($mobile, $content){
        if( !$this->check($mobile) ) {
            $this->writeLog($mobile, $content, "發送失敗,".$this->Message);
            return false;
        }
        $content = $this->parsePlaceholder($content);
        $statusStr = array(
            "0" => "短信發送成功",
            "-1" => "參數不全",
            "-2" => "服務器空間不支持,請確認支持curl或者fsocket,聯系您的空間商解決或者更換空間!",
            "30" => "密碼錯誤",
            "40" => "賬號不存在",
            "41" => "余額不足",
            "42" => "帳戶已過期",
            "43" => "IP地址限制",
            "50" => "內容含有敏感詞"
        );
        $smsapi = "http://api.smsbao.com/";
        $user = $this->AccountName; //短信平臺帳號
        $pass = md5($this->AccountPassword); //短信平臺密碼
        $phone = $mobile;//要發送短信的手機號碼
        $sendurl = $smsapi."sms?u=".$user."&p=".$pass."&m=".$phone."&c=".urlencode($content);
        $result =file_get_contents($sendurl) ;
        $this->Message = $statusStr[$result];
        if( $result == 0  ){
            $this->writeLog($mobile, $content, $statusStr[$result]);
            return true;
        }else{
            $this->writeLog($mobile, $content, "發送失敗,".$statusStr[$result]);
            return false;
        }
    }
   

經過上面的替換,短信寶的短信平臺已經替換成功了,可以正常使用了。進行測試發送:

報備一下短信寶的VIP模板,這樣就可以走短信寶的優質通道了,即便遇到敏感文字我們都不會人工審核,短信內容3~5秒就可送達。

另外:我們已經開發好完整的YouDianCMSV9.1系統短信寶插件,點擊此鏈接 下載及查看安裝流程。

開源插件

最新更新

電商類

CMS類

微信類

文章標簽