uccu/aliyun-sms

阿里云短信服务PHP SDK(2017/11/19)

Installs: 16

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/uccu/aliyun-sms

v1.0.0 2018-01-19 08:29 UTC

This package is auto-updated.

Last update: 2025-10-09 21:17:07 UTC


README

阿里云短信服务PHP SDK(2017/11/19) 根据SDK轻量版改编 阿里云sdk下载

LICENSE

MIT

use Uccu\AliyunSms\SendSms;

$c = new SendSms;

$c->setAccessKey('###','###');
$c->setParams([
    'PhoneNumbers'=>'###',
    'SignName'=>'###',
    'TemplateCode'=>'###',
    'TemplateParam'=>[
        "code" => '1234'
    ],
]);


echo $c->sendSms();