zen / skebby-bundle
Skebby sms gateway
1.3.1
2018-06-26 07:56 UTC
Requires
- php: >=5.3.2
- guzzlehttp/guzzle: ~6.0
- symfony/framework-bundle: ~3.0|~4.0
This package is auto-updated.
Last update: 2024-10-11 19:08:16 UTC
README
What is zen\skebby-bundle?
A bundle that give you a SMS gateway via Italian Skebby company.
Installation
In `composer.json
` use
require:
"zen/skebby-bundle": "1.2.*"
In your `app/AppKernerl.php
` add:
new Zen\Bundle\SkebbyBundle\SkebbyBundle()
In your `app/config/parameters.yml
` add:
skebby_username: myskebbyaccount # customize this
skebby_password: myskebbypass # customize this
In your `app/config/config.yml
` add:
skebby:
username: %skebby_username%
password: %skebby_password%
#
# if you want to simulate only the send,
# uncomment next line
# but a valid account is required
#test_mode: true
#
# if you want add prefix (not add if already present)
#add_prefix: '39'
#
# if you want clean phone number
#clean_regexp: '/[^0-9]/' (Remove non number chars)
Usage
In your controller use:
use Zen\Bundle\SkebbyBundle\Util\Skebby;
public function sendSmsAction()
{
$skebby = $this->getSkebby();
$text = "Hello!";
$result = $skebby->sendSMS(array('tel1', 'tel2', 'telx'), $text, Skebby::SMS_TYPE_CLASSIC);
}
/**
* Get Skebby service
*
* @return \Zen\Bundle\SkebbyBundle\Lib\ManagerSkebby
*/
private function getSkebby()
{
return $this->getContainer()->get('skebby');
}
You can use these console commands:
$ php app/console skebby:credit
$ php app/console skebby:sms:basic -d=<number1> -d=<number2> -d=<numberX> <text message>