youlead-bow / spothit-sms-api
Spothit 库
v1.1.1
2024-04-23 13:22 UTC
Requires
- php: >=8.1
- ext-curl: *
- ext-json: *
Requires (Dev)
- symfony/webhook: ^6.4|^7.0
README
Spot-hit SMS API PHP 客户端。
安装
安装 Spot-hit SMS API PHP 客户端推荐使用 composer
$ composer require youlead-bow/spothit-sms-api
使用
发送简单短信
<?php $client = new Spothit\Client\Sms('***API_KEY***'); $client->setSmsRecipients(['+336********']); $client->setSmsSender('AnySender'); $client->send('Yiiii - This is my first SMS');