2017 © Pedro Peláez
 

library clickatel-php-api

A PHP API for sending SMS messages using the Clickatell XML API.

image

badcow/clickatel-php-api

A PHP API for sending SMS messages using the Clickatell XML API.

  • Tuesday, February 26, 2013
  • by samuelwilliams
  • Repository
  • 1 Watchers
  • 3 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 14 % Grown

The README.md

Badcow Clickatell PHP API

This is an API for use with the Clickatell SMS service. It allows the sending of a single message to multiple numbers., (*1)

The script uses the Clickatell XML API, you will need to subscribe to a Clickatell account to use this API., (*2)

Example

require_once __DIR__ . '/Clickatell/Clickatell.php';

use Badcow\Clickatell\Clickatell;

$clickatell = new Clickatell('1234567', 'username', 'password');

$clickatell->authenticate()
    ->addNumbers(array(
        '19991234567',
        '19997654321',
    ))
    ->setFrom('Sam Williams')
    ->setMessage('Hello, this is a test message')
    ->sendSMS();

The Versions

26/02 2013

dev-master

9999999-dev

A PHP API for sending SMS messages using the Clickatell XML API.

  Sources   Download

by Sam Williams