informagenie/orange-sms

There is no license information available for the latest version (v1.3) of this package.

Unofficial Orange SMS API SDK

v1.3 2021-12-26 00:11 UTC

This package is auto-updated.

Last update: 2024-04-26 13:09:42 UTC


README

A PHP library to send SMS through Orange SMS API

Installation

You need to have composer installed in your computer before doing this

composer require informagenie/orange-sms

Quick setup

Get client_id and client_secret here or follow guide

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

    use Informagenie\OrangeSDK;

    $credentials = [
        'client_id' => 'your_client_id',
        'client_secret' => 'your_client_secret'
    ];

    $version = 'v3'; //per default 

    /*
       You can use directly authorization header instead of client_id and client_secret
       $credentials = [
           'authorization_header' => 'Basic xxx...',
       ];
     */

    $sms = new OrangeSDK($credentials);

    $response = $sms->message('Hello world !', $version)
        ->from(243820000000)       // Sender phone's number
        ->as('Informagenie')      // Sender's name (optional)
        ->to(2439000000000)      // Recipiant phone's number
        ->send();

If all is ok, $response should be like this :

stdClass Object
(
    [outboundSMSMessageRequest] => stdClass Object
        (
            [address] => Array
                (
                    [0] => tel:+243900000000
                )

            [senderAddress] => tel:+243820000000
            [senderName] => Informagenie
            [outboundSMSTextMessage] => stdClass Object
                (
                    [message] => Hello World
                )

            [resourceURL] => https://api.orange.com/smsmessaging/v1/outbound/tel:+243820000000/requests/9d523078-1d3d-4c90-8984-7216e18deb97
        )

)