PHP code example of brandshopru / tele2

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


use Brandshopru\Tele2\Client;

$login = 'Tele2Login';
$password = 'Tele2Password';

$Tele2Client = new Client($login, $password);

$phone = "+76543210987";
$message = "Привет, нам не хватает только тебя ;)";
$brandsname = "BRANDSHOP";

try {
    $result = $Tele2Client->sendSms($phone, $message, $brandsname);
    if ($result->isOk()) {
        // сообщение отправлено
        $details = $result->getContent();
    } else {
        // что-то пошло не так
    }
} catch (Exception $error) {
    //обрабатываем исключение
}