PHP class for working with smspilot.ru api by Yii Dream Team.
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist yii-dream-team/smspilot "*"
or add
"yii-dream-team/smspilot": "*"
to the require section of your composer.json.
Authorization:
$api = new \yiidreamteam\smspilot\Api($apiId);
Sending text message:
$api->send('79112223344', 'Text message');
$api->send('79112223344', 'Text message', 'Sender', 'messageId');
MIT