PHPackages                             sabuj073/laravel-bulk-sms - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. sabuj073/laravel-bulk-sms

ActiveLibrary[API Development](/categories/api)

sabuj073/laravel-bulk-sms
=========================

Bulk SMS integration for Laravel with configurable gateways (value/paid format)

00PHP

Since Mar 10Pushed 3mo agoCompare

[ Source](https://github.com/sabuj073/laravel-bulk-sms)[ Packagist](https://packagist.org/packages/sabuj073/laravel-bulk-sms)[ RSS](/packages/sabuj073-laravel-bulk-sms/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Bulk SMS
================

[](#laravel-bulk-sms)

Bulk SMS for Laravel with configurable gateways. Supports generic HTTP API (value/paid format), SSL Wireless, and Twilio.

Installation
------------

[](#installation)

```
composer require sabuj073/laravel-bulk-sms
```

```
php artisan vendor:publish --tag=bulk-sms-config
```

Configuration
-------------

[](#configuration)

Set `BULK_SMS_DRIVER` to one of: `http`, `ssl_wireless`, `twilio`.

### Generic HTTP driver (any gateway – value/paid format)

[](#generic-http-driver-any-gateway--valuepaid-format)

Use when your provider gives you a URL and parameter names (e.g. `number`, `message`, `sender`).

```
BULK_SMS_DRIVER=http
BULK_SMS_HTTP_URL=https://api.your-gateway.com/send
BULK_SMS_HTTP_METHOD=GET
BULK_SMS_PARAM_TO=number
BULK_SMS_PARAM_MESSAGE=message
BULK_SMS_PARAM_SENDER=sender
BULK_SMS_AUTH_TYPE=basic
BULK_SMS_USERNAME=user
BULK_SMS_PASSWORD=pass
```

Or `BULK_SMS_AUTH_TYPE=bearer` with `BULK_SMS_API_KEY`.

### SSL Wireless

[](#ssl-wireless)

```
BULK_SMS_DRIVER=ssl_wireless
SSL_SMS_API_TOKEN=your_token
SSL_SMS_SID=your_sid
```

### Twilio

[](#twilio)

```
BULK_SMS_DRIVER=twilio
TWILIO_ACCOUNT_SID=xxx
TWILIO_AUTH_TOKEN=xxx
TWILIO_FROM=+1234567890
```

Usage
-----

[](#usage)

```
use Sabuj073\BulkSms\BulkSmsManager;

$sms = app(BulkSmsManager::class);
$result = $sms->send('+8801XXXXXXXXX', 'Your message');
// $result = ['success' => true/false, 'status' => 200, 'body' => ...]

$results = $sms->sendBulk(['+8801...', '+8801...'], 'Bulk message');
```

Use another driver once:

```
$sms->driver('twilio')->send($to, $message);
```

###  Health Score

18

—

LowBetter than 8% of packages

Maintenance53

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/2efefd0d96dbe26a45d6f83e670878ce6bf6f5add6bf75b32f7ac092b70a4910?d=identicon)[sabuj073](/maintainers/sabuj073)

---

Top Contributors

[![sabuj073](https://avatars.githubusercontent.com/u/41548986?v=4)](https://github.com/sabuj073 "sabuj073 (1 commits)")

### Embed Badge

![Health badge](/badges/sabuj073-laravel-bulk-sms/health.svg)

```
[![Health](https://phpackages.com/badges/sabuj073-laravel-bulk-sms/health.svg)](https://phpackages.com/packages/sabuj073-laravel-bulk-sms)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93452.6k6](/packages/botman-driver-telegram)[pixelant/pxa-social-feed

Add Facebook, Instagram, and Twitter feeds to your site.

2349.3k](/packages/pixelant-pxa-social-feed)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
