mantasvaitkunas/vertex-sms-php-implementation

This is vertexsms.com API PHP implementation.

1.0.0 2016-10-23 11:23 UTC

This package is not auto-updated.

Last update: 2024-05-11 17:39:59 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();