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

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/pahappa-limited/egosms-sdk

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

This package is not auto-updated.

Last update: 2026-01-06 14:56:36 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()