PHP code example of mrssoft / yii2-sms

1. Go to this page and download the library: Download mrssoft/yii2-sms library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mrssoft / yii2-sms example snippets


'components' => [
    ...
    'sms' => [
        'class' => 'mrssoft\sms\drivers\tele2\Sms',
        'apiUrl' => 'https://target.t2.ru/api/v2/',
        'login' => '',
        'password' => '',
        'naming' => 'BRAND',
    ],
    ...
    'sms' => [
        'class' => 'mrssoft\sms\drivers\mts\Sms',
        'token' => '',
        'naming' => 'BRAND',
    ],
    ....
]

Yii::$app->sms->sendMessage('Message', '79830000000');
Yii::$app->sms->sendMessages('Message', ['79830000000', '79830000001']);

php composer.phar