LaravelPackages.net
Acme Inc.
Toggle sidebar
isadma/laravel-smpp

Laravel package to send SMS using SMPP

318
1
v1.0.6
About isadma/laravel-smpp

isadma/laravel-smpp is a Laravel package for laravel package to send sms using smpp. It currently has 1 GitHub stars and 318 downloads on Packagist (latest version v1.0.6). Install it with composer require isadma/laravel-smpp. Discover more Laravel packages by isadma or browse all Laravel packages to compare alternatives.

Last updated

Laravel SMPP

Latest Version License

A simple Laravel package to send SMS messages using the SMPP protocol, built on top of alexandr-mironov/php8-smpp.


πŸš€ Features

  • Laravel-ready SMPP client
  • Reads SMPP config from .env
  • Clean service-based architecture
  • Exception-driven error handling

πŸ“¦ Installation

Require the package

composer require isadma/laravel-smpp

βš™οΈ Configuration

Add the following to your .env file:

SMPP_IP=ip_address SMPP_PORT=port_number SMPP_FROM=your_short_number SMPP_USERNAME=your_smpp_username SMPP_PASSWORD=your_smpp_password

The published config file will be available at: config/smpp.php.


πŸ’‘ Usage

You can use the Facade for cleaner syntax:

use Smpp;

SmppService::sendMessage('9936XXXXXXX', 'Your message');

πŸ“„ License

This package is open-sourced software licensed under the MIT license.


πŸ™ Credits

Comments