> 插件说明:支持近三十家服务商的短信服务,所有涉及短信的地方都会调用此插件设置
![](https://img.kancloud.cn/93/96/93961dd757a5e254576e70e492bee936_577x707.png)
> 以下为各个短信服务商的参数列表(每个标题都是可以点击进入对应官网)
*****
### [阿里云](https://www.aliyun.com/)
短信内容使用`template`+`data`
~~~html
'aliyun' => [
'access_key_id' => '',
'access_key_secret' => '',
'sign_name' => '',
],
~~~
### [](https://github.com/overtrue/easy-sms#%E9%98%BF%E9%87%8C%E4%BA%91rest)[阿里云Rest](https://www.aliyun.com/)
短信内容使用`template`+`data`
~~~html
'aliyunrest' => [
'app_key' => '',
'app_secret_key' => '',
'sign_name' => '',
],
~~~
### [](https://github.com/overtrue/easy-sms#%E9%98%BF%E9%87%8C%E4%BA%91%E5%9B%BD%E9%99%85)[阿里云国际](https://www.alibabacloud.com/help/zh/doc-detail/160524.html)
短信内容使用`template`+`data`
~~~html
'aliyunintl' => [
'access_key_id' => '',
'access_key_secret' => '',
'sign_name' => '',
],
~~~
发送示例:
~~~html
use Overtrue\EasySms\PhoneNumber;
$easySms = new EasySms($config);
$phone_number = new PhoneNumber(18888888888, 86);
$easySms->send($phone_number, [
'content' => '您好:先生/女士!您的验证码为${code},有效时间是5分钟,请及时验证。',
'template' => 'SMS_00000001', // 模板ID
'data' => [
"code" => 521410,
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E4%BA%91%E7%89%87)[云片](https://www.yunpian.com/)
短信内容使用`content`
~~~html
'yunpian' => [
'api_key' => '',
'signature' => '【默认签名】', // 内容中无签名时使用
],
~~~
### [](https://github.com/overtrue/easy-sms#submail)[Submail](https://www.mysubmail.com/)
短信内容使用`data`
~~~html
'submail' => [
'app_id' => '',
'app_key' => '',
'project' => '', // 默认 project,可在发送时 data 中指定
],
~~~
### [](https://github.com/overtrue/easy-sms#%E8%9E%BA%E4%B8%9D%E5%B8%BD)[螺丝帽](https://luosimao.com/)
短信内容使用`content`
~~~html
'luosimao' => [
'api_key' => '',
],
~~~
### [](https://github.com/overtrue/easy-sms#%E5%AE%B9%E8%81%94%E4%BA%91%E9%80%9A%E8%AE%AF)[容联云通讯](http://www.yuntongxun.com/)
短信内容使用`template`+`data`
~~~html
'yuntongxun' => [
'app_id' => '',
'account_sid' => '',
'account_token' => '',
'is_sub_account' => false,
],
~~~
### [](https://github.com/overtrue/easy-sms#%E4%BA%92%E4%BA%BF%E6%97%A0%E7%BA%BF)[互亿无线](http://www.ihuyi.com/)
短信内容使用`content`
~~~html
'huyi' => [
'api_id' => '',
'api_key' => '',
'signature' => '',
],
~~~
### [](https://github.com/overtrue/easy-sms#%E8%81%9A%E5%90%88%E6%95%B0%E6%8D%AE)[聚合数据](https://www.juhe.cn/)
短信内容使用`template`+`data`
~~~html
'juhe' => [
'app_key' => '',
],
~~~
### [](https://github.com/overtrue/easy-sms#sendcloud)[SendCloud](http://www.sendcloud.net/)
短信内容使用`template`+`data`
~~~html
'sendcloud' => [
'sms_user' => '',
'sms_key' => '',
'timestamp' => false, // 是否启用时间戳
],
~~~
### [](https://github.com/overtrue/easy-sms#%E7%99%BE%E5%BA%A6%E4%BA%91)[百度云](https://cloud.baidu.com/)
短信内容使用`template`+`data`
~~~html
'baidu' => [
'ak' => '',
'sk' => '',
'invoke_id' => '',
'domain' => '',
],
~~~
### [](https://github.com/overtrue/easy-sms#%E5%8D%8E%E4%BF%A1%E7%9F%AD%E4%BF%A1%E5%B9%B3%E5%8F%B0)[华信短信平台](http://www.ipyy.com/)
短信内容使用`content`
~~~html
'huaxin' => [
'user_id' => '',
'password' => '',
'account' => '',
'ip' => '',
'ext_no' => '',
],
~~~
### [](https://github.com/overtrue/easy-sms#253%E4%BA%91%E9%80%9A%E8%AE%AF%E5%88%9B%E8%93%9D)[253云通讯(创蓝)](https://www.253.com/)
短信内容使用`content`
~~~html
'chuanglan' => [
'account' => '',
'password' => '',
// 国际短信时必填
'intel_account' => '',
'intel_password' => '',
// \Overtrue\EasySms\Gateways\ChuanglanGateway::CHANNEL_VALIDATE_CODE => 验证码通道(默认)
// \Overtrue\EasySms\Gateways\ChuanglanGateway::CHANNEL_PROMOTION_CODE => 会员营销通道
'channel' => \Overtrue\EasySms\Gateways\ChuanglanGateway::CHANNEL_VALIDATE_CODE,
// 会员营销通道 特定参数。创蓝规定:api提交营销短信的时候,需要自己加短信的签名及退订信息
'sign' => '【通讯云】',
'unsubscribe' => '回TD退订',
],
~~~
### [](https://github.com/overtrue/easy-sms#%E8%9E%8D%E4%BA%91)[融云](http://www.rongcloud.cn/)
短信分为两大类,验证类和通知类短信。 发送验证类短信使用`template`+`data`
~~~html
'rongcloud' => [
'app_key' => '',
'app_secret' => '',
]
~~~
### [](https://github.com/overtrue/easy-sms#%E5%A4%A9%E6%AF%85%E6%97%A0%E7%BA%BF)[天毅无线](http://www.85hu.com/)
短信内容使用`content`
~~~html
'tianyiwuxian' => [
'username' => '', //用户名
'password' => '', //密码
'gwid' => '', //网关ID
]
~~~
### [](https://github.com/overtrue/easy-sms#twilio)[twilio](https://www.twilio.com/)
短信使用`content`发送对象需要 使用`+`添加区号
~~~html
'twilio' => [
'account_sid' => '', // sid
'from' => '', // 发送的号码 可以在控制台购买
'token' => '', // apitoken
],
~~~
### [](https://github.com/overtrue/easy-sms#tiniyo)[tiniyo](https://www.tiniyo.com/)
短信使用`content`发送对象需要 使用`+`添加区号
~~~html
'tiniyo' => [
'account_sid' => '', // auth_id from https://tiniyo.com
'from' => '', // 发送的号码 可以在控制台购买
'token' => '', // auth_secret from https://tiniyo.com
],
~~~
### [](https://github.com/overtrue/easy-sms#%E8%85%BE%E8%AE%AF%E4%BA%91-sms)[腾讯云 SMS](https://cloud.tencent.com/product/sms)
短信内容使用`template`+`data`
~~~html
'qcloud' => [
'sdk_app_id' => '', // 短信应用的 SDK APP ID
'secret_id' => '', // SECRET ID
'secret_key' => '', // SECRET KEY
'sign_name' => '腾讯CoDesign', // 短信签名
],
~~~
发送示例:
~~~html
$easySms->send(18888888888, [
'template' => 101234, // 模板ID
'data' => [
"a", 'b', 'c', 'd', //按占位顺序给值
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E9%98%BF%E5%87%A1%E8%BE%BE%E6%95%B0%E6%8D%AE)[阿凡达数据](http://www.avatardata.cn/)
短信内容使用`template`+`data`
~~~html
'avatardata' => [
'app_key' => '', // APP KEY
],
~~~
### [](https://github.com/overtrue/easy-sms#%E5%8D%8E%E4%B8%BA%E4%BA%91-sms)[华为云 SMS](https://www.huaweicloud.com/product/msgsms.html)
短信内容使用`template`+`data`
~~~html
'huawei' => [
'endpoint' => '', // APP接入地址
'app_key' => '', // APP KEY
'app_secret' => '', // APP SECRET
'from' => [
'default' => '1069012345', // 默认使用签名通道号
'custom' => 'csms12345', // 其他签名通道号 可以在 data 中定义 from 来指定
'abc' => 'csms67890', // 其他签名通道号
...
],
'callback' => '' // 短信状态回调地址
],
~~~
使用默认签名通道`default`
~~~html
$easySms->send(13188888888, [
'template' => 'SMS_001',
'data' => [
6379
],
]);
~~~
使用指定签名通道
~~~html
$easySms->send(13188888888, [
'template' => 'SMS_001',
'data' => [
6379,
'from' => 'custom' // 对应 config 中的 from 数组中 custom
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E7%BD%91%E6%98%93%E4%BA%91%E4%BF%A1)[网易云信](https://yunxin.163.com/sms)
短信内容使用`template`+`data`
~~~html
'yunxin' => [
'app_key' => '',
'app_secret' => '',
'code_length' => 4, // 随机验证码长度,范围 4~10,默认为 4
'need_up' => false, // 是否需要支持短信上行
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => 'SMS_001', // 不填则使用默认模板
'data' => [
'code' => 8946, // 如果设置了该参数,则 code_length 参数无效
'action' => 'sendCode', // 默认为 `sendCode`,校验短信验证码使用 `verifyCode`
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E4%BA%91%E4%B9%8B%E8%AE%AF)[云之讯](https://www.ucpaas.com/index.html)
短信内容使用`template`+`data`
~~~html
'yunzhixun' => [
'sid' => '',
'token' => '',
'app_id' => '',
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => 'SMS_001',
'data' => [
'params' => '8946,3', // 模板参数,多个参数使用 `,` 分割,模板无参数时可为空
'uid' => 'hexianghui', // 用户 ID,随状态报告返回,可为空
'mobiles' => '18888888888,188888888889', // 批量发送短信,手机号使用 `,` 分割,不使用批量发送请不要设置该参数
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E5%87%AF%E4%BF%A1%E9%80%9A)[凯信通](http://www.kingtto.cn/)
短信内容使用`content`
~~~html
'kingtto' => [
'userid' => '',
'account' => '',
'password' => '',
],
~~~
~~~html
$easySms->send(18888888888, [
'content' => '您的验证码为: 6379',
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E4%B8%83%E7%89%9B%E4%BA%91)[七牛云](https://www.qiniu.com/)
短信内容使用`template`+`data`
~~~html
'qiniu' => [
'secret_key' => '',
'access_key' => '',
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => '1231234123412341234',
'data' => [
'code' => 1234,
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#ucloud)[Ucloud](https://www.ucloud.cn/)
短信使用`template`+`data`
~~~html
'ucloud' => [
'private_key' => '', //私钥
'public_key' => '', //公钥
'sig_content' => '', // 短信签名,
'project_id' => '', //项目ID,子账号才需要该参数
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => 'UTAXXXXX', //短信模板
'data' => [
'code' => 1234, //模板参数,模板没有参数不用则填写,有多个参数请用数组,[1111,1111]
'mobiles' =>'', //同时发送多个手机短信,请用数组[xxx,xxx]
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E7%9F%AD%E4%BF%A1%E5%AE%9D)[短信宝](http://www.smsbao.com/)
短信使用`content`
~~~html
'smsbao' => [
'user' => '', //账号
'password' => '' //密码
],
~~~
~~~html
$easySms->send(18888888888, [
'content' => '您的验证码为: 6379', //短信模板
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E6%91%A9%E6%9D%9C%E4%BA%91)[摩杜云](https://www.moduyun.com/)
短信使用`template`+`data`
~~~html
'moduyun' => [
'accesskey' => '', //必填 ACCESS KEY
'secretkey' => '', //必填 SECRET KEY
'signId' => '', //选填 短信签名,如果使用默认签名,该字段可缺省
'type' => 0, //选填 0:普通短信;1:营销短信
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => '5a95****b953', //短信模板
'data' => [
1234, //模板参数,对应模板的{1}
30 //模板参数,对应模板的{2}
//...
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E8%9E%8D%E5%90%88%E4%BA%91%E5%8A%A9%E9%80%9A)[融合云(助通)](https://www.ztinfo.cn/products/sms)
短信使用`template`+`data`
~~~html
'rongheyun' => [
'username' => '', //必填 用户名
'password' => '', //必填 密码
'signature'=> '', //必填 已报备的签名
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => '31874', //短信模板
'data' => [
'valid_code' => '888888', //模板参数,对应模板的{valid_code}
//...
],
]);
~~~
### [](https://github.com/overtrue/easy-sms#%E8%9C%98%E8%9B%9B%E4%BA%91)[蜘蛛云](https://zzyun.com/)
短信使用`template`+`data`
~~~html
'zzyun' => [
'user_id' => '', //必填 会员ID
'secret' => '', //必填 接口密钥
'sign_name'=> '', //必填 短信签名
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => 'SMS_210317****', //短信模板
'data' => [
'code' => '888888', //模板参数,对应模板的{code}
//...
],
]);
~~~
### [融合云信](https://maap.wo.cn/)
短信使用`template`+`data`
~~~html
'maap' => [
'cpcode' => '', //必填 商户编码
'key' => '', //必填 接口密钥
'excode'=> '', //选填 扩展名
],
~~~
~~~html
$easySms->send(18888888888, [
'template' => '356120', //短信模板
'data' => [
'123465'
],//模板参数
]);
~~~
### [天瑞云](http://cms.tinree.com/)
短信内容使用`template`+`data`
~~~html
'tinree' => [
'accesskey' => '', // 平台分配给用户的accesskey
'secret' => '', // 平台分配给用户的secret
'sign' => '', // 平台上申请的接口短信签名或者签名ID
],
~~~
发送示例:
~~~html
$easySms->send(18888888888, [
'template' => '123456', // 模板ID
'data' => [
"a", 'b', 'c', //按模板变量占位顺序
],
]);
~~~
### [时代互联](https://www.now.cn/)
短信使用`content`
~~~html
'nowcn' => [
'key' => '', //用户ID
'secret' => '', //开发密钥
'api_type' => '', // 短信通道,
],
~~~
发送示例:
~~~html
$easySms->send(18888888888, [
'content' => '您的验证码为: 6379',
]);
~~~
### [火山引擎](https://console.volcengine.com/sms/)
短信内容使用`template`+`data`
~~~html
'volcengine' => [
'access_key_id' => '', // 平台分配给用户的access_key_id
'access_key_secret' => '', // 平台分配给用户的access_key_secret
'region_id' => 'cn-north-1', // 国内节点 cn-north-1,国外节点 ap-singapore-1,不填或填错,默认使用国内节点
'sign_name' => '', // 平台上申请的接口短信签名或者签名ID,可不填,发送短信时data中指定
'sms_account' => '', // 消息组帐号,火山短信页面右上角,短信应用括号中的字符串,可不填,发送短信时data中指定
],
~~~
发送示例1:
~~~html
$easySms->send(18888888888, [
'template' => 'SMS_123456', // 模板ID
'data' => [
"code" => 1234 // 模板变量
],
]);
~~~
发送示例2:
~~~html
$easySms->send(18888888888, [
'template' => 'SMS_123456', // 模板ID
'data' => [
"template_param" => ["code" => 1234], // 模板变量参数
"sign_name" => "yoursignname", // 签名,覆盖配置文件中的sign_name
"sms_account" => "yoursmsaccount", // 消息组帐号,覆盖配置文件中的sms_account
"phone_numbers" => "18888888888,18888888889", // 手机号,批量发送,英文的逗号连接多个手机号,覆盖发送方法中的填入的手机号
],
]);
~~~
- 序言
- 使用条款
- 安装
- 环境搭建
- 目录结构
- 钩子和行为
- 表单生成
- 数据限制
- 命令行
- 一键生成CRUD
- 一键生成菜单
- 一键安装
- 系统配置
- 常规字段
- 特殊字段1:下拉框(高级)字段
- 特殊字段2:自定义字段
- 特殊字段3:自定义多图片
- 系统函数/类
- 函数说明
- cache - 缓存管理
- thumb - 获取缩略图
- str_cut - 字符截取
- 邮箱/短信
- 插件使用说明
- cms内容管理【cms】
- 变量/常量
- 函数
- getCategory - 栏目获取
- catpos - 面包屑
- seo - 生成SEO
- buildCatUrl - 生成栏目URL
- buildContentUrl - 创建内容链接
- 标签
- 公共参数
- 栏目标签
- 列表标签
- 上一页标签
- 下一页标签
- Tags标签
- 万能标签
- 原生标签
- 搜索页
- 筛选页
- 内容详情页
- 模板
- 技巧/问题
- 将CMS路由设置更简洁
- 外链和单页如何增加列表类型的子栏目
- 如何合理设置SEO
- 实现电脑和手机模板分离
- 敏感词检测
- 栏目授权不全
- 内容页分页
- 分页伪静态
- tag标签不支持特殊字符
- 部分虚拟主机tags页面报错
- 循环表格
- 二级目录搭建知识点
- 阅读收费
- 会员插件【member】
- 介绍
- 自定义表单【formguide】
- 调用方式
- 模板
- 支付插件【pay】
- 支付宝
- 微信
- 常见问题
- 接口文档【apidoc】
- 简介
- 配置
- 使用
- 万能采集【collection】
- 采集列表规则
- 采集内容规则
- 关于图片
- 案例一:采集yzncms论坛
- cms小程序【wxcms】(重构已下架)
- 前端
- H5设计【diywap】
- 返回顶部【returntop】
- 通用数据导出【dataoutput】
- 多通道短信【easysms】
- 塞邮邮箱【saiyouems】
- 第三方登录【synclogin】
- 中文分词【getwords】
- QQ客服【kefu】
- 地图位置【address】
- 智能人机验证【vaptcha】
- 行为验证码【ajcaptcha】
- 数据转换【v9toyzn】
- 数据转换【dedetoyzn】
- 百度收录查询【baidurecord】
- 蜘蛛访问统计【spider】
- editormd编辑器【editormd】
- 敏感词检测【sensitive】
- 邮箱发送【phpmailer】
- 内容收藏【favorite】
- 队列插件【queue】
- 七牛云【qiniu】
- 阿里云oss【alioss】
- 腾讯云【cos】
- 迅搜全文检索【xunsearch】
- 评论插件【comments】
- 网页即时通讯【webim】(重构已下架)
- 生成js
- window使用
- linux使用(推荐)
- 常见问题
- 友情链接【links】
- 考试插件【kaoshi】(暂停)
- 会员邀请【invite】
- 快递查询插件【expressquery】
- 礼品卡提货系统【pickup】
- 地区插件【area】
- IP归属地查询【ipregion】
- 百度统计插件【baidutongji】
- 消息通知【notice】
- 微信管理【wechat】
- 在线投票系统【vote】
- 前端&组件
- 后台前端框架
- 文件上传
- table数据表格
- auth权限验证
- 动态显示(Favisible)
- 动态下拉(SelectPage)
- 键值组件(Fieldlist)
- uniapp教程
- 常见问题
- YznCMS开发遇到错误怎么办?(新手必看)
- 关闭调试模式
- 伪静态(URL重写)
- 虚拟主机不支持绑定public的方法
- 各类虚拟主机伪静态使用注意事项
- 百度编辑器多图片上传被压缩
- 部分虚拟主机隐藏index.php有问题
- 后台路径admin.php修改
- 后台密码忘记重置方法
- 宝塔面板一键部署
- 后台登录时验证码不显示
- 小程序图片不显示
- 如何自定义404页面显示模板
- 管理员登录时提示请于1天后再尝试登录
- composer
- composer简介
- 内置composer
- 各大厂商镜像地址
- 常用命令
- 拓展知识
- 助手类
- thinkphp维护
- 插件开发
- 目录结构
- 数据库
- 测试数据
- 插件信息
- 插件配置
- 核心文件
- 插件函数
- 🔥开发者入驻
- 申请入驻
- 建立私库
- 插件入驻流程
- 模板入驻流程
- 安全建议
- 更新日记和补丁包