Skip to content

samuelwilliams/Clickatell-PHP-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

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

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages