2017 © Pedro Peláez
 

library atasms

Easily sending sms with AtaTexnologiya SMS Api

image

adil/atasms

Easily sending sms with AtaTexnologiya SMS Api

  • Wednesday, June 20, 2018
  • by iAdil
  • Repository
  • 1 Watchers
  • 1 Stars
  • 14 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

AtaTexnologiya SMS Api Interface

Easily sending sms with AtaTexnologiya SMS Api

Installation

With Composer, (*1)

$ composer require adil/atasms
{
    "require": {
        "adil/atasms": "~2.0"
    }
}
<?php
require 'vendor/autoload.php';

use AtaTexnologiya\Sms;

## Usage

Usage

<?php
// require autoload file
require 'vendor/autoload.php';

// import library
use AtaTexnologiya\Sms;

// sending sms now
(new Sms())
    ->login('login') // your login
    ->password('pass') // your password
    ->title('iAdil') // your title
    ->number('+0000') // sending sms number
    ->text('Sending sms!') // sending sms text
    ->send(); // send

Schedule sms sending

(new Sms())
    ->login('login') // your login
    ->password('pass') // your password
    ->title('iAdil') // your title
    ->number('+0000') // sending sms number
    ->text('Sending sms!') // sending sms text
    ->schedule('2018-08-08 12:00:00') // when sms will be send
    ->send(); // send

The Versions

20/06 2018

dev-master

9999999-dev

Easily sending sms with AtaTexnologiya SMS Api

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

sms

05/09 2017

2.1

2.1.0.0

Easily sending sms with AtaTexnologiya SMS Api

  Sources   Download

MIT

The Requires

  • php >=5.4.0

 

The Development Requires

sms