kch / smsapi-bundle
Symfony 2 Bundle for SMSApi PHP Client library.
Installs: 8 328
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 5
Forks: 0
Type:symfony-bundle
Requires
- php: >=5.3.0
- smsapi/php-client: 1.6.*
This package is not auto-updated.
Last update: 2024-12-07 19:49:49 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();
}