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

Package info

github.com/ZenithInc/sms

pkg:composer/zenithsu/sms

Statistics

Installs: 173

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-02-18 11:53:46 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);