bellal/vodafone-sms

Send SMSs using vodafone bulk sms API

Installs: 1 943

Dependents: 0

Suggesters: 0

Security: 0

Stars: 19

Watchers: 2

Forks: 5

Open Issues: 0

Type:package

pkg:composer/bellal/vodafone-sms

0.1.1 2018-06-25 19:52 UTC

This package is auto-updated.

Last update: 2025-09-29 01:58:44 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',
]);