You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
774 B
21 lines
774 B
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 阿里云Sms
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
// accessKeyId
|
|
'accessKeyId' => 'LTAI5tMHed9uPPMiqe5rpJVn',
|
|
// accessKeySecret
|
|
'accessKeySecret' => 'hBXoJRZoIN2FYDqVzaZn8rU6Uvw6g2',
|
|
// 指定区域
|
|
'regionId' => 'cn-hangzhou',
|
|
// 具体产品
|
|
'product' => 'Dysmsapi',
|
|
// host地址
|
|
'host' => 'dysmsapi.aliyuncs.com',
|
|
// 签名(需要在阿里云短信服务后台申请)
|
|
'SignName' => '粤职才',
|
|
// 短信模板code (需要在阿里云短信服务后台申请)
|
|
'TemplateCode' => 'SMS_461395821',
|
|
];
|