PHP code example of ringlesoft / jasmin-client

1. Go to this page and download the library: Download ringlesoft/jasmin-client 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/ */

    

ringlesoft / jasmin-client example snippets


$sms = JasminClient::message()
    ->content('Hello there! Have a nice day')
    ->to("255711000000")
    ->from('INFO')
    ->via('rest') // 'rest' or 'http'
    ->send();

    $message = JasminClient::message(to: "255711000000", content: "Hello There. Have a nice day");
    $message2 = JasminClient::message(to: "255711000002", content: "Hello There. Have a nice day");
    $batch = JasminClient::batch()
    ->addMessage($message)
    ->addMessage($message2)
    ->from("INFO")
    ->send();

    $route = JasminClient::rest()->checkRoute("255711000000");

    $balance = JasminClient::rest()->checkBalance();

    $metrics = JasminClient::http()->getMetrics();
bash
php artisan vendor:publish --provider="RingleSoft\JasminClient\JasminClientServiceProvider"