pahappa-limited/egosms-sdk

This is the PHP version of the EgoSms SDK - which will help PHP software to communicate with EgoSms bulk messaging servce by Pahappa Limited

Maintainers

Package info

github.com/Pahappa-LTD/EgoSmsPHPSDK

pkg:composer/pahappa-limited/egosms-sdk

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2025-09-01 15:14 UTC

This package is not auto-updated.

Last update: 2026-03-31 16:24:46 UTC


README

Usage:

private $sdk;
$this->sdk = EgoSmsSDK::authenticate('username', 'password');
$this->sdk->sendSMS('+256772123456', 'Test message');
$numbers = ['+256772123456', '0772123457'];
$this->sdk->sendSMS($numbers, 'Test message');
$balance = $this->sdk->getBalance()