davidcb/laravel-esendex

Laravel wrapper for Esendex
12,757
Install
composer require davidcb/laravel-esendex
Latest Version:0.7.1
PHP:^7.3|^8.0
License:MIT
Last Updated:Jun 25, 2026
Links: GitHub  ·  Packagist
Maintainer: davidcb

Laravel-Esendex

Laravel 5 wrapper for Esendex SMS

Installation

Install via Composer:

composer require davidcb/laravel-esendex

If you're using Laravel >= 5.5, you can skip this as this package will be auto-discovered. Add the service provider to config/app.php

Davidcb\Esendex\EsendexServiceProvider::class,

You can register the facade in the aliases array in the config/app.php file

'Esendex' => Davidcb\Esendex\Facades\Esendex::class,

Publish the config file

$ php artisan vendor:publish --provider="Davidcb\Esendex\EsendexServiceProvider"

Set your API key and Client ID on your .env file

ESENDEX_ACCOUNT=EX000000
ESENDEX_EMAIL=user@example.com
ESENDEX_PASSWORD=secret

Usage

You can find all the methods in the original esendex/esendex-php-sdk package.

Examples:

// Send an SMS
$result = LaravelEsendex::send('Sender', '555000000', 'This is the text of the SMS');
// Retrieve inbox messages
$messages = LaravelEsendex::latest();
// Get a message's status
$status = LaravelEsendex::messageStatus('123456');
// Get a message's body
$body = LaravelEsendex::getMessageBodyById('123456');

Related Packages

androidneha/laravel-msg91

Laravel integration for Msg91 messaging API.

12,430 5
toplan/laravel-sms

A mobile phone number validation solution based on laravel

80,590 835
laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

9,089,784 258
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
rinvex/laravel-authy

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

78,132 32