Yii2 wrapper for sms.ru API
The preferred way to install this extension is through composer.
Either run
$ php composer.phar require alexeevdv/yii2-sms-ru "dev-master"
or add
"alexeevdv/yii2-sms-ru": "dev-master"
to the require
section of your composer.json
file.
"components" => [
//...
"sms" => [
"class" => "alexeevdv\sms\ru\Client",
"api_id" => "YOUR_API_ID",
],
//...
],
use alexeevdv\sms\ru\Sms;
$response = \Yii::$app->sms->send(new Sms([
"to" => "+9530000000",
"text" => "Hello my friend!",
]));
echo $response->code;