mantasvaitkunas / vertex-sms-php-implementation
This is vertexsms.com API PHP implementation.
Installs: 148
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/mantasvaitkunas/vertex-sms-php-implementation
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is not auto-updated.
Last update: 2025-09-28 01:44:05 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();