franzose/laravel-smpp

SMS sending via SMPP protocol for Laravel framework.
45,070 39
Install
composer require franzose/laravel-smpp
Latest Version:v1.5
Last Updated:May 24, 2024
Links: GitHub  ·  Packagist
Maintainer: franzose

Laravel SMPP

This package is a tiny wrapper for the onlinecity/php-smpp library. It provides a basic SMPP interface and implementation for the Laravel framework.

Installation

You can install Laravel SMPP using Composer command:

$ composer require franzose/laravel-smpp

Then you need to add LaravelSmpp\LaravelSmppServiceProvider::class to your providers array in the config/app.php and copy default configuration by invoking $ php artisan vendor:publish command.

Usage

You can use the service pretty straightforward and inject dependency in your controller:

<?php

namespace App\Http\Controllers;

class SmsController extends Controller
{
    public function send(SmppServiceInterface $smpp)
    {
        // One number
        $this->smpp->sendOne(1234567890, 'Hi, this SMS was send via SMPP protocol');
        
        // Multiple numbers
        $this->smpp->sendBulk([1234567890, 0987654321], 'Hi!');
    }
}

However it is better to abstract your SMS sending service from the SMPP implementation by defining a SMPP-compatible service interface.

Related Packages

rinvex/laravel-authy

Rinvex Authy is a simple wrapper for Authy TOTP, the best rated Two-Factor Authe...

77,843 32
toplan/laravel-sms

A mobile phone number validation solution based on laravel

80,381 835
laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

8,789,583 258
kavenegar/laravel

laravel 4 and 5 kavenegar integration

358,904 86
laravel-notification-channels/authy

Authy notification channel for Laravel, with the ability to send in-app, sms, an...

46,701 57