mantasvaitkunas/vertex-sms-php-implementation

这是 verticesms.com API 的 PHP 实现。

1.0.0 2016-10-23 11:23 UTC

This package is not auto-updated.

Last update: 2024-09-28 20:03:40 UTC


README

这是 https://vertexsms.com/docs/sms.html 的 PHP 实现。

通过 composer 安装

composer require mantasvaitkunas/vertex-sms-php-implementation

使用示例

$sender = new \MantasVaitkunas\VertexSmsPhpImplementation\Sender('your_api_token');
$sender->setTo('+37088888888');
$sender->setFrom('sender_id');
$sender->setMessage('sms text goes here.');
$result = $sender->send();