Send SMS messages using www.netelip.com service
Requirements ¶
You at least need PHP 5.3+ adn cURL.
Usage ¶
Change your config/main.php to add a new component:
'components' => array
(
  'sms' => array
     (
      'class'    => 'application.extensions.netelipsms.NetelipSMS',
      'login'     => 'user to login', // User to web login 
      'password'   => 'password to login',     // password to web login
     )
)
Now you can use the extension like this:
Yii::app()->sms->messageSend( array( '+34600000000', '+01555000000' ), 'Hello!' );
Resources ¶
- [Service page] http://www.netelip.com
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.