netpro9/yii2-messente

A Yii2 component for working with TurboSMS.ua SOAP service

dev-master 2014-10-13 19:16 UTC

This package is not auto-updated.

Last update: 2025-07-01 11:58:30 UTC


README

TurboSMS component gives you an ability to send SMS messages via TurboSMS.ua SMS gateway.

This component is built with use of TurboSMS SOAP service.

Latest Stable Version Code Climate Scrutinizer Code Quality Version Eye License

Requirements

  • Yii 2.0 (dev-master)
  • PHP 5.4
  • PHP extension SOAP

Note: This extension mandatorily requires Yii Framework 2. The framework is under active development and there are now stable release of Yii 2 for now.

Installation

The preferred way to install this extension is through Composer.

Either run

php composer.phar require kop/yii2-turbosms "dev-master"

or add

"kop/yii2-turbosms": "dev-master"

to the require section of your composer.json file.

Setup

All you need is to declare a new component in your application configuration file like follows:

return [
    ...
    'components' => [
        ...
        'sms' => [
            'class' => '\kop\y2ts\TurboSMS',
            'username' => '<<< YOUR USERNAME HERE >>>'
            'password' => '<<< YOUR PASSWORD HERE >>>',
            'alphaName' => 'MyWebsite',
        ]
        ...
    ]
    ...
];

Configuration

username

The username used for authentication on TurboSMS SOAP service.

password

The password used for authentication on TurboSMS SOAP service.

alphaName

The name that users will see as the message sender name.

Usage

As simple as:

Yii::$app->sms->send(['+380501234567', '+380502345678'], 'Hello world!');

Please refer to the class documentation for more methods and options.

Report

License

yii2-turbosms is released under the MIT License. See the bundled LICENSE.md for details.

Resources