Wallogit.com
2017 © Pedro Peláez
Implements the MessageBird SMS gateway
We've released a new MessageBird REST API: https://www.messagebird.com/developers/php Please use the new repository for new projects and contributions. Note that old API's (like this one) will still be actively supported in the future., (*1)
The MessageBird SMS API Client Library enables you send SMS messages using the Messagebird.com API., (*3)
The recommended way to install the library is through Composer. Just create a
composer.json file and run the php composer.phar install command to
install it:, (*4)
{
"require": {
"mobiletulip/messagebird-sms-api-bundle": "~1.4"
}
}
Alternatively, you can download a zip archive and extract it., (*5)
A more extended example, which shows more features of the API is available in example.php and example_form.php, (*6)
$sms = new MessageBird('username', 'password');
$sms->setSender('YourSender');
$sms->addDestination('31600000000');
$sms->sendSms('This is a test message');
For technical documentation see:, (*7)
The MessageBird SMS API Client for PHP is licensed under BSD (Berkeley Software Distribution) License. Copyright (c) 2014, MessageBird, (*8)