descom / sms-php
Build your SMS application with PHP, easy SMS sending and worldwide coverage
Requires
- php: ~8.1
- guzzlehttp/guzzle: ^7.0
Requires (Dev)
- phpunit/phpunit: ^10.3
This package is auto-updated.
Last update: 2024-10-29 09:18:09 UTC
README
PHP SMS sending
SMS Library for sending text messages to mobile numbers worldwide from your own application via Descom SMS gateway.
Create your free account at Descom SMS and buy credits for SMS sending when required.
Our API documentation is available here. Also, we will be happy to assist you at soporte@descom.es for further info on your SMS project.
Installation
You can install it with composer:
composer require descom/sms-php
Usage
Send single SMS
This is an example:
$sms = new Sms(new AuthUser('your_username', 'your_password')); $message = new Message(); $message->addTo('mobile_number')->setText('message_text'); $result = $sms->addMessage($message) ->setDryrun(true) ->send();
Send multiple SMS
You can send multiple SMS in one go, function addTo
:
//... $message->addTo('mobile_number_1') ->addTo('mobile_number_2'); //...
or with an Array:
//... $message->addTo([ 'mobile_number_1', 'mobile_number_2' ]); //...
Check your account balance
The function getBalance
allows you to check your SMS balance, this is your credit available. Example:
$sms = new Sms(new AuthUser('replace_by_your_usernme', 'replace_by_your_password')); $balance = $sms->getBalance(); echo 'Your balance is '.$balance."\n";
Get list of senderID authorized
The function getSenderID
allows you get the list of senderID authorized. Example:
$sms = new Sms(new AuthUser('replace_by_your_usernme', 'replace_by_your_password')); $senderID = $sms->getSenderID(); echo 'Your balance is '.PHP_EOL; print_r($senderID);
Setup your sender ID
Alphanumeric sender ID allows you to set your name or business brand as the sender ID. Use the function setSenderID
at Descom\Sms\Message
class
$message->setSenderID('replace_by_sender_of_message');
Note your sender ID should previously be added in your Descom SMS account setup.
Test your SMS sending application for free
Test your SMS sending application at no cost by using function setDryrun
in the class Descom\Sms\Sms
and set to true
$sms->setDryrun(true);
Dryrun just simulates SMS sending; no message will be sent out and no SMS credit will be deducted from your account.
Examples
Examples available at folder Examples.