yuxiaobo/yunxinton_sms_sdk

聚美智数接口

1.0.1 2023-06-01 17:48 UTC

This package is auto-updated.

Last update: 2024-04-30 00:48:34 UTC


README

官网

安装

composer require yuxiaobo/yunxinton_sms_sdk

单元测试

./vendor/bin/phpunit test/SmsTest.php

短信SDK

已完成

  • send 发送短信
  • detail 查询短信发送详情
  • getSignList 查询短信签名列表
  • getTemplateList 查询短信模板列表

发送短信

$sms = new Sms($_ENV['USERNAME'], $_ENV['PASSWORD']);
list($success, $response) = $sms->send('18311548014', 'ce试试');

if ($success == false) {
    // 短信发送失败
}

更新记录

1.0.0

  • 🎉 开发上架完成