PHP code example of jasirilabs / nanasisms

1. Go to this page and download the library: Download jasirilabs/nanasisms library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

jasirilabs / nanasisms example snippets



use JasiriLabs\NanasiSMS\Config;
use JasiriLabs\NanasiSMS\NextSms\NextSmsAdapter;
use JasiriLabs\NanasiSMS\SwahibaSms;

$config = new Config(['username' => 'username', 'password' => 'password']);

$sms = new SwahibaSms(
    new NextSmsAdapter($config),
    []
);




$sms->send(['255765975152', '255766073577'], ['Hello Sigma SMS', 'Its working']);

$sms->schedule('255746094190', 'Hello Scheduled SMS', ['date' => '2022-06-30', 'time' => '10:03']);

$sms->deliveryReport(['limit' => 3]) 

$sms->balance()