ninetysec / dysms

阿里短信接口

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

阿里短信接口

Latest Stable Version Total Downloads php>=5.4 License

PS:阿里大于 https://github.com/flc1125/alidayu

安装

composer require flc/dysms

使用

<?php
use Flc\Dysms\Client;
use Flc\Dysms\Request\SendSms;

$config = [
    'accessKeyId'    => 'LTAIbVA2LRQ1tULr',
    'accessKeySecret' => 'ocS48RUuyBPpQHsfoWokCuz8ZQbGxl',
];

$client  = new Client($config);
$sendSms = new SendSms;
$sendSms->setPhoneNumbers('1500000000');
$sendSms->setSignName('叶子坑');
$sendSms->setTemplateCode('SMS_77670013');
$sendSms->setTemplateParam(['code' => rand(100000, 999999)]);
$sendSms->setOutId('demo');

print_r($client->execute($sendSms));

支持

License

MIT

About

阿里短信接口

License:MIT License


Languages

Language:PHP 100.0%