# thinkphp-sms-tencent **Repository Path**: SanTans_admin/thinkphp-sms-tencent ## Basic Information - **Project Name**: thinkphp-sms-tencent - **Description**: thinkphp6 腾讯云短信驱动 - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2021-08-20 - **Last Updated**: 2023-06-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # thinkphp6 腾讯云 sms 驱动 ## 修改配置文件 `config/sms.php` --- ```php return [ 'default'=>env('sms.default','aliyun'), 'drives'=>[ 'tencent'=>[ 'type'=>'Tencent', 'region'=>null,//地域 'secretId'=>null,// 'secretKey'=>null,// 'endpoint'=>null,// ] ] ]; ``` ---