待发短信

在线客服
产品支持 短信宝客服
合作渠道 渠道合作
服务咨询

4001-021-502

工作时间

9:00-21:00

友价源码短信宝短信插件

进入后台-基本资料-通信设置,将代码改成如下所示,然后填入短信框里

(注意:有些没有在后台直接添加,需要将函数保存为php文件,保存到config/mobphp/mysendsms.php

GBK版本

?
1
2
3
4
5
6
7
8
9
10
11
function yjsendsms($m1,$m2){
    
    $user '您的短信宝账户';
    $password '您的短信宝密码';
    $sign "【站长交易网】";//短信签名
    if(!empty($m1)){
        $url "http://api.smsbao.com/sms";
        $url .= '?u='.$user.'&p='.md5($password).'&m='.$m1.'&c='.urlencode(iconv("GBK","UTF-8//IGNORE",$sign.$m2));
        $ret file_get_contents($url);
    }
}

UTF-8版本

?
1
2
3
4
5
6
7
8
9
10
function yjsendsms($m1,$m2){
    $user '您的短信宝账户';
    $password '您的短信宝密码';
    $sign "【站长交易网】";//短信签名
    if(!empty($m1)){
        $url "http://api.smsbao.com/sms";
        $url .= '?u='.$user.'&p='.md5($password).'&m='.$m1.'&c='.urlencode($sign.$m2);
        $ret file_get_contents($url);
    }
}

注:$m1表示要发送的手机号码,$m2表示要发送的短信内容

开源插件

最新更新

电商类

CMS类

微信类

插件标签