sensetivity / sms-fly
SMSFly plugin for CakePHP 3.x
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.4.16
- cakephp/cakephp: ~3.0
Requires (Dev)
README
CakePHP SMSFly Plugin for SMS Fly service
Installation
Step 1: Install plugin
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require sensetivity/sms-fly": "^1.0.3"
Step 2: Load plugin
// your config/bootstrap.php file Plugin::load('SMSFly', ['bootstrap' => false, 'routes' => false]);
Step 3: Usage & Configure
To use this plugin just load it on your controller
// your controller $this->loadComponent('SMSFly.SMSFly', [ 'username' => 'YOUR_USERNAME', 'password' => 'YOUR_PASSWORD', ]);
After that you can use plugin. It`s easy,
// your controller // Send for one: $this->SMSFly->sendSMS(380930001100, 'Some SMS-body message'); // Send SMS to many: $this->SMSFly->sendSMSToMany([ 380930001100, 380970001100 ], 'Тестовий текст для багатьох номерів'); // Cyrillic also working.
Method Examples
// Send SMS for one user. $this->SMSFly->sendSMS(380930001100, 'Some SMS-body message'); // Send SMS with same text for many users. $this->SMSFly->sendSMSToMany([ 380930001100, 380970001100 ], 'Тестовий текст для багатьох номерів'); // Cyrillic also working. // Check balance on your account. $this->SMSFly->getBalance(); // Check the SMS count that left on your account. $this->SMSFly->getSMSCount();