maatify/whysms

PHP library for WhySms API handler, known by our team

1.1.2 2023-10-24 13:40 UTC

This package is auto-updated.

Last update: 2024-04-24 14:37:35 UTC


README

Current version Packagist PHP Version Support Monthly Downloads Total Downloads Stars

Installation

composer require maatify/whysms

Usage

Instance

use Maatify\WhySms\WhySms;

require_once __DIR__ . '/vendor/autoload.php';

$why_sms = new WhySms(__API_TOKEN__, __SENDER_ID__); // WhySms instance

Check Balance

$result = $why_sms->->CheckBalance();

print_r($result);

Response Example :

Success Example
  Array
  (
      [success] => 1
      [remaining_unit] => 7
      [expired_on] => 1st Jun 33, 7:16 PM
  )
Error Example
  Array
  (
      [success] =>
      [error] => (err-Maatify\WhySms\Request::Curl) cURL Error (22): The requested URL returned error: 401 Unauthorized
  )

Send SMS Message

$result = $why_sms->SendSms(__PHONE_NUMBER__, __SMS_MESSAGE__);

print_r($result);

Response Example :

Success Example
  Array
  (
      [success] => 1
      [details] => Your message was successfully delivered
      [uid] => 64c7392312ecb
      [to] => __PHONE_NUMBER__
      [from] => __SMS_MESSAGE__
      [message] => Welcome to first test from why sms
      [status] => Delivered
      [cost] => 1
  )
Error Example
  Array
  (
      [success] =>
      [error] => (err-Maatify\WhySms\Request::Curl) cURL Error (22): The requested URL returned error: 404 Not Found
  )