thepublicgood/smsportal

SMSPortal client for Laravel

v0.0.1 2023-04-18 14:38 UTC

This package is auto-updated.

Last update: 2024-04-18 17:00:30 UTC


README

Tests

This library provides a complete implementation of the SMSPortal Rest API for Laravel. The library provides a generic client you can use to send SMSs and a Laravel Notifications Channel which can be used to easily send SMSs to specific entities.

Installation through Composer:

composer require thepublicgood/smsportal

Once installed, publish the config file with:

php ./artisan vendor:publish --provider="TPG\\SMSPortal\\SMSPortalServiceProvider"

This will place a simple smsportal.php file in your config directory. However, if you don't want to publish the provided config file, you can also alter the provided services.php config file with:

return [

    //...
    
    'smsportal' => [
        'id' => env('SMSPORTAL_ID'),
        'secret' => env('SMSPORTAL_SECRET'),
    ],

];

Configure your SMSPortal API ID and Secret in either the services.php or smsportal.php config file.

Basic usage

The library provides a Laravel facade to easily send arbitrary messages to one or more mobile numbers:

SMSPortal::to('27823456789')->message('Hello, World!')->send();

You can also send the same message to multiple numbers by passing in an array:

SMSPortal::to(['27823456789', '278209876543'])->message('Hello, all of you!')->send();

Advanced usage

If you need more control over who received what, the library has registered the SMSPortalClient interface into the Laravel container. You can create Message objects and pass them to the sendBulk method:

use TPG\SMSPortal\Contracts\SMSPortalClient;
use TPG\SMSPortal\Message;

public function sms(SMSPortalClient $client)
{
    $message1 = new Message('27823456789', 'Message number 1');
    $message2 = new Message('27829876543', 'Message number 2');
    
    $response = $client->sendBulk([$message1, $message2]);
}

You can also use the send message to send a single message:

$response = $client->send($message);

SMSPortal groups

If you've set up groups on contacts through SMSPortal, you can send a single message to the groups your choice by using the sendGroup method:

use TPG\SMSPortal\Contracts\SMSPortalClient;
use TPG\SMSPortal\Message;

public function sms(SMSPortalClient $client)
{
    $response = $client->sendGroup('Hello, all of you groups!', ['group1', 'group2']);
}

Laravel Notifications

If you want to use SMSPortal through Laravel Notifications, create a new Notification class and add smsportal to the array returned by the via method:

use TPG\SMSPortal\SMSPortalChannel;

public function via($notifiable): array
{
    return [
        'smsportal',
    ]
}

Then define a toSMSPortal method on the notification and return a message string:

public function toSMSPortal($notifiable): string
{
    'Hello, '.$notifiable->name;
}

On the notifiable class (your User class, for example) define a routeNotificationForSMSPortal method that returns the correct mobile number to send to:

public function routeNotificationForSmsPortal(Notification $notification): string
{
    return $this->mobile;
}

Sending options

The library also provides a way to pass SMSPortal sending options. You can create a new instance of SendOptions and pass in any option you need. Pass this as the last parameter of the send, sendBulk or sendGroup methods:

use TPG\SMSPortal\Contracts\SMSPortalClient;
use TPG\SMSPortal\Message;

public function sms(SMSPortalClient $client)
{
    $options = new SendOptions(
        allowContentTrimming: true,
        shortenUrls: true,
    );

    $response = $client->send($message, $options);
}