bellal / vodafone-sms
Send SMSs using vodafone bulk sms API
Package info
github.com/bellalMohamed/vodafone-sms-api
Type:package
pkg:composer/bellal/vodafone-sms
0.1.1
2018-06-25 19:52 UTC
Requires
- php: >=5.4
This package is auto-updated.
Last update: 2026-03-01 00:24:33 UTC
README
Vodafone Bulk SMS API
Installing Package
The recommended way to install is through Composer.
composer require bellal/vodafone-sms
<?php
use Bellal\VodafoneSMS\VodafoneAdapter;
$messageProviderInstance = new VodafoneAdapter([
'accountId' => 'VODAFONE_ACCOUNT_ID',
'password' => 'VODAFONE_PASS',
'secretKey' => 'VODAFONE_SECRET_KEY',
'senderName' => 'VODAFONE_SENDER_NAME',
]);
$result = $messageProviderInstance->send([
'to' => 'RECIEVER_NUMBER',
'text' => 'MESSAGE_BODY',
]);