An open API service indexing awesome lists of open source software.

https://github.com/osenco/bongasms

Bonga SMS PHP SDK
https://github.com/osenco/bongasms

api bonga bongasms otp sms

Last synced: 4 months ago
JSON representation

Bonga SMS PHP SDK

Awesome Lists containing this project

README

          

# Bonga SMS
Bonga SMS PHP SDK

## Installation
Install via composer

```cmd
composer require osenco/bongasms
```

## Instantiation
Pass the apiClientID, key, secret in the class constructor

```php
$sms = new Osen\Bonga\Sms($apiClientID, $key, $secret);
```

## Usage
### Send SMS
```php
$sms->send($phone, $message);
```