nek-v / yii-esmsc
Extension for sending SMS messages
Installs: 59
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/nek-v/yii-esmsc
Requires
- php: >=5.4.0
- its/php-smpp: dev-master
README
This extension is designed to send sms messages through different services and protocols.
You can add your providers extending class ESMSCProvider.
See the examples in the directory providers
Resources
- Concept and some code: Yii EAuth
- Yii Framework
- php-smpp
- SMPP v3.4
- Kannel
Requirements
- PHP 5.3+
- Yii 1.1 or above
Installation
- Configure your composer.json as in the example below
... "require": { "nek-v/yii-esmsc" } ...
- Or extract the files with the extension in the protected/extensions
- In your
protected/config/main.php, add the following:
<?php ... 'aliases' => array( // Path to vendor dir 'vendor' => realpath(__DIR__ . '/../vendor'), ), 'import' => array( 'vendor.nek-v.yii-esmsc.*', ), 'components' => array( 'sms' => array( 'class' => 'vendor.nek-v.yii-esmsc.ESMSC', 'provides' => array( 'dummy' => array( 'class' => 'DummyProvider' ), 'smpp' => array( 'class' => 'SMPPProvider', 'server' => 'smpp server', 'port' => 'smpp port', 'login' => 'smpp login', 'password' => 'smpp passwod', 'source' => 'sender name' ) ) ) ) ...
Usage
<?php class SiteController extends CController { public function actionIndex() { $text = 'Hello world!'; $phone = '1234567891011'; $provider = Yii::app()->sms; // Dummy $provider->getInstance('dummy')->send($phone, $text); // SMPP $provider->getInstance('smpp')->send($phone, $text); } }