There is no license information available for the latest version (1.6) of this package.

Класс предназначен для отправки СМС

1.6 2021-10-06 08:23 UTC

This package is auto-updated.

Last update: 2025-06-13 09:26:00 UTC


README

Официальный модуль для отправки смс-сообщений по протоколу HTTP через провайдера Beeline.


Установка

Указание репозитория в файле composer.json:

{
    "require": {
        "the_alex_mark/beesms": "*"
    },
    "repositories": [
    {
        "type": "git",
        "url": "https://github.com/the-alex-mark/beesms.git"
        }
    ]
}

Установка командой:

composer update the_alex_mark/beesms

Использование

$client = new BEESMS($username, $password);
$result = $client->post_message('Hello World!', $target, $sender);

// Результат в формате XML
echo $result;

Дополнительная информация