Easily integrate with multiple SMS service providers like Qiniu Cloud, Alibaba Cloud, and others using our Composer package. Simplify your SMS integration across platforms with ease.

Maintainers

Details

github.com/ZenithInc/sms

Source

Issues

Installs: 173

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/zenithsu/sms

v0.1.1 2024-04-18 08:00 UTC

This package is auto-updated.

Last update: 2025-10-18 11:07:47 UTC


README

Easily integrate with multiple SMS service providers like Qiniu Cloud, Alibaba Cloud, and others using our Composer package. Simplify your SMS integration across platforms with ease.

Qiniu Cloud

Send sms with Qiniu Cloud, for example:

$config = new QiniuConfig("AK", "SK");
$sender = new SmsSender(SmsSender::QINIU, $config);
$result = $sender->sendTemplateSms('18969143231', '1541338019544449024', ['code' => mt_rand(100_000, 999_999)]);
var_dump($result);