punkstar/gradwell_smsapi

This package is abandoned and no longer maintained. No replacement package was suggested.

A PHP library for sending text messages with the Gradwell SMS API

1.0.0 2014-02-12 18:44 UTC

This package is auto-updated.

Last update: 2022-08-13 01:07:12 UTC


README

Unofficial library to send SMS messages using the Gradwell API.

Installation

Composer

{
    "require": {
        "punkstar/gradwell_smsapi": "dev-master"
    }
}

Usage

require_once "vendor/autoload.php";

$sms = new \Gradwell\SMSAPI\Service($auth_token);
$message = new \Gradwell\SMSAPI\Message($your_mobile, $your_mobile, 'Hello World');

$sms->send($message);