2017 © Pedro Peláez
 

yii2-extension yii2-sms

Send Free Sms for Yii2

image

abhi1693/yii2-sms

Send Free Sms for Yii2

  • Sunday, December 18, 2016
  • by abhi1693
  • Repository
  • 3 Watchers
  • 13 Stars
  • 716 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 13 Forks
  • 1 Open issues
  • 3 Versions
  • 3 % Grown

The README.md

Yii2-Sms

Gratipay User Dependency Status Latest Stable Version Total Downloads Latest Unstable Version License, (*1)

Yii2-Sms sends free messages using Swift Mail, (*2)

Documentation

Installation

This document will guide you through the process of installing Yii2-Sms using composer., (*3)

Download using composer

$ php composer.phar require abhi1693/yii2-sms 2.0.0

Or Add Yii2-Sms to the require section of your composer.json file:, (*4)

{
    "require": {
        "abhi1693/yii2-sms": "2.0.0"
    }
}

And run following command to download extension using composer:, (*5)

$ php composer.phar update

Basic Usage

Valid Carriers

  • AT&T
  • Boost Mobile
  • Cingular
  • Metro PCS
  • Nextel
  • Sprint
  • T-Mobile
  • Verizon
  • Virgin Mobile

Usage

$sms = new Sms();

$sms->transportType    = 'php'; // php/smtp
$sms->transportOptions = [
        'host'       => 'smtp.gmail.com',     // Other domains can also be used
        'username'   => 'your@gmail.com',
        'password'   => '******',
        'port'       => '465',
        'encryption' => 'ssl'
    ];
$carrier = "T-Mobile";
$number = "0123456789";
$subject = "Subject";
$message = "Message";
$sms->send($carrier, $number, $subject, $message);

How to contribute?

Contributing instructions are located in CONTRIBUTING.md file., (*6)

License

Yii2-sms is released under the MIT License. See the bundled LICENSE for details., (*7)

The Versions

18/12 2016

dev-master

9999999-dev

Send Free Sms for Yii2

  Sources   Download

MIT License

The Requires

 

extension yii2 sms

26/02 2015

v2.0.0

2.0.0.0

Send Free Sms for Yii2

  Sources   Download

MIT License

The Requires

 

extension yii2 sms

01/02 2015

v1.0.0

1.0.0.0

Send Free Sms for Yii2

  Sources   Download

MIT License

The Requires

 

extension yii2 sms