kch/smsapi-bundle

Symfony 2 Bundle for SMSApi PHP Client library.

Installs: 8 317

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 5

Forks: 0

Type:symfony-bundle

1.6.2 2016-06-01 07:46 UTC

This package is not auto-updated.

Last update: 2024-04-27 16:19:54 UTC


README

Symfony 2 Bundle for SMSApi PHP Client library.

Symfony 2 Bundle dla biblioteki SMSApi PHP Client.

Installation:

composer require kch/smsapi-bundle

Configuration - config.yml:

kch_sms_api:
    clients:
        default:
            client_login: TEST
            client_password_hash: TEST

Usage - sending one SMS:

Based on original library code: https://github.com/smsapi/smsapi-php-client/wiki/Examples

$smsFactory = $this->get('kch_sms_api.sms_factory.default');

try {
    $actionSend = $smsFactory->actionSend();

    $actionSend->setTo('600xxxxxx');
    $actionSend->setText('Hello World!!');
    $actionSend->setSender('Info'); //Pole nadawcy, lub typ wiadomości: 'ECO', '2Way'

    $response = $actionSend->execute();

    foreach ($response->getList() as $status) {
        echo $status->getNumber() . ' ' . $status->getPoints() . ' ' . $status->getStatus();
    }
} catch (SmsapiException $exception) {
    echo 'ERROR: ' . $exception->getMessage();
}