mantasvaitkunas / vertex-sms-php-implementation
This is vertexsms.com API PHP implementation.
1.0.0
2016-10-23 11:23 UTC
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2024-12-21 21:26:06 UTC
README
This is https://vertexsms.com/docs/sms.html PHP implementation.
Installation via composer
composer require mantasvaitkunas/vertex-sms-php-implementation
Usage example
$sender = new \MantasVaitkunas\VertexSmsPhpImplementation\Sender('your_api_token'); $sender->setTo('+37088888888'); $sender->setFrom('sender_id'); $sender->setMessage('sms text goes here.'); $result = $sender->send();