sensetivity/sms-fly
Composer 安装命令:
composer require sensetivity/sms-fly
包简介
SMSFly plugin for CakePHP 3.x
README 文档
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();
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2016-05-08