Send SMS with a single line of code. You can send SMS all over the world using LabsMobile platform and their HTTP/POST API.
Requirements ¶
Yii 1.1
A LabsMobile user account. Go to www.labsmobile.com to signup.
Usage ¶
Copy the LabsMobileSMS folder into /protected/extensions
Add the following lines into you configuration file (ex. /config/main.php)
...
'components' => array(
...
'sms' => array(
'class'=>'ext.LabsMobileSms.LabsMobileSms',
'LMaccount_username'=>'{YOUR USERNAME}',
'LMaccount_password'=>'{YOUR PASSWORD}',
'LMaccount_clientapi'=>'{YOUR API CLIENT}',
),
- Now you can send SMS with the following code:
Yii::app()->sms->send(array('to'=>'34609033161', 'message'=>'Hello world!'));
or check the credits of your LabsMobile account:
Yii::app()->sms->get_balance();
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.