PHP code example of brandshopru / smsc

1. Go to this page and download the library: Download brandshopru/smsc 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/ */

    

brandshopru / smsc example snippets


use Brandshopru\Smsc\Client;

    $login = 'smscLogin';                       //логин клиента
    $password = 'smscPassword';                 //пароль
    $useMethodPost = TRUE;                      //использовать метод POST
    $useHttps = TRUE;                           //использовать HTTPS протокол
    $charset = 'utf-8';                         //кодировка сообщения: utf-8, koi8-r или windows-1251 (по умолчанию)
    $emailSender = '[email protected]';   //e-mail адрес отправителя
    
    $SmsCenterClient = new Client($login, $password, $useMethodPost, $useHttps, $charset, $emailSender);
    
    $phone = "+76543210987";
    $message = "Привет, нам не хватает только тебя ;)";
    
    try {
        $result = $SmsCenterClient->send_sms($phone, $message);
        if ($result->isOk()) {
            // сообщение отправлено
            $details = $result->getContent();
        } else {
            // что-то пошло не так
        }
    } catch (Exception $error) {
        //обрабатываем исключение
    }