badcow/clickatel-php-api

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (dev-master) of this package.

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

dev-master 2013-02-26 03:09 UTC

This package is auto-updated.

Last update: 2022-02-01 12:23:49 UTC


README

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

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

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();