netesy/yii2-bulksms A simple class to handle the bulk sms api for Nigerian bulk sms hhtp api connection

Latest Stable Version Total Downloads License Netesy Netesy Yii2

A Yii2 extension to handle sending messages for most Nigerian bulksms http api connections

  1. Installation
  2. Supported websites
  3. Usage

A Yii2 extension to handle sending messages for most Nigerian bulksms http api connections

Installation

The preferred way to install this extension is through composer.

Either run

php composer require netesy/yii2-bulksms

or add

"netesy/yii2-bulksms": "*"

to the require section of your composer.json file.

Supported websites

NigerianBulkSMS

BetaSMS

Usage

Once the extension is installed, simply use it in your code by :

first add to config.php `php <?php 'components' => [

'bulksms' => [
      'class' => 'netesy\bulksms\BulkSms',
      'username' => 'xxxxxxxx',
      'password' => 'xxxxxxxx',
      'sender' => 'sender number',
      'url' => 'the api address',
      ],

] ?> `

Once the extension is installed, simply use it in your code by : to send a message `php <?php

Yii::$app->bulksms->sendMessage([
'number' => $number,
'message' => 'message',
  ]);

?> to send a callphp <?php

Yii::$app->bulksms->sendCall([
'number' => $number,
'message' => 'message',
  ]);

?> `

to get your account balance

<?php 
	Yii::$app->bulksms->getBalance();
 ?>
0 0
1 follower
17 downloads
Yii Version: 2.0
License: MIT
Category: Web Service
Created on: Jun 12, 2018
Last updated: (not set)
Packagist Profile
Github Repository

Related Extensions