Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arif98741/multisms
Xenon is a universal SMS sending library specially for Bangladesh. You can integrate this library in your PHP application easily for sending SMS to any Bangladeshi mobile number. This is for raw PHP.
https://github.com/arif98741/multisms
bangladeshi-sms-gateway php php-sms-gateway sms sms-gatewai-api sms-gateway sms-gateway-library xenon xenon-library xenon-package
Last synced: 3 months ago
JSON representation
Xenon is a universal SMS sending library specially for Bangladesh. You can integrate this library in your PHP application easily for sending SMS to any Bangladeshi mobile number. This is for raw PHP.
- Host: GitHub
- URL: https://github.com/arif98741/multisms
- Owner: arif98741
- Created: 2021-03-10T20:26:47.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T08:23:31.000Z (6 months ago)
- Last Synced: 2024-10-02T08:21:15.892Z (3 months ago)
- Topics: bangladeshi-sms-gateway, php, php-sms-gateway, sms, sms-gatewai-api, sms-gateway, sms-gateway-library, xenon, xenon-library, xenon-package
- Language: PHP
- Homepage:
- Size: 79.1 KB
- Stars: 15
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
xenon/multisms is a universal sms sending library specially for Bangladesh.
You can integrate this library in your php application easily for sending sms to any Bangladeshi mobile number. This is for raw php as well.### Installation
```
composer require xenon/multisms
```### Sample Code
use Xenon\Multisms\Provider\BulkSmsBD;
use Xenon\Multisms\Sender;require 'vendor/autoload.php';
$sender = Sender::getInstance();
try {
$response = $sender->selectProvider(BulkSmsBD::class)
->setConfig(['username' => '017555XYZAB', 'password' => 'XXXXX'])
->setMessage('hello')
->setMobile('017XXXXXXX')
->send();
var_dump($response);
} catch (Exception $e) {
var_dump($e->getMessage());
}#### Currently Supported SMS Gateways
* BDBulkSMS
* BulkSMSBD
* MDLSMS
* OnnoRokomSMS
* SSLSms
* MIMSMSWe are continuously working in this open source library for adding more Bangladeshi sms gateway. If you fee something is missing then make a issue regarding that.
If you want to contribute in this library, then you are highly welcome to do that.