PHPackages                             rihabrahman/bulksmsbd-laravel - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. rihabrahman/bulksmsbd-laravel

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

rihabrahman/bulksmsbd-laravel
=============================

Laravel package for integrating BulkSMSBD SMS gateway with DLR events.

v1.0.0(7mo ago)10MITPHPPHP &gt;=8.0

Since Oct 8Pushed 7mo agoCompare

[ Source](https://github.com/rihabrahman/bulksmsbd-laravel)[ Packagist](https://packagist.org/packages/rihabrahman/bulksmsbd-laravel)[ RSS](/packages/rihabrahman-bulksmsbd-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

📦 BulkSMSBD Laravel Package
===========================

[](#-bulksmsbd-laravel-package)

A simple and developer-friendly Laravel package for sending SMS via [BulkSMSBD](https://bulksmsbd.net) — built to make integration painless and clean for all Laravel versions.

---

🚀 Features
----------

[](#-features)

✅ Send SMS (one-to-many)
✅ Send personalized messages (many-to-many)
✅ Check credit balance
✅ Handle Delivery Reports (DLR) via response code
✅ Laravel Events for delivered &amp; failed messages
✅ Works with Laravel 7 – 13 and PHP 8+

---

🛠️ Installation
---------------

[](#️-installation)

```
composer require rihabrahman/bulksmsbd-laravel
```

Then publish the config file:

```
php artisan vendor:publish --tag=bulksmsbd-config
```

---

⚙️ Configuration
----------------

[](#️-configuration)

In your `.env` file:

```
BULKSMSBD_API_KEY=your_api_key_here
BULKSMSBD_SENDER_ID=your_sender_id_here
BULKSMSBD_TYPE=text
```

You can override config in `config/bulksmsbd.php`.

---

💬 Sending SMS
-------------

[](#-sending-sms)

### 🔹 One-to-Many (Same Message to Many Numbers)

[](#-one-to-many-same-message-to-many-numbers)

```
use RihabRahman\BulkSmsBd\Facades\Sms;

Sms::send('8801712345678', 'Welcome to our service!');

// Multiple recipients (comma-separated)
Sms::send('8801712345678,8801912345678', 'Meeting starts at 3 PM.');
```

### 🔹 Many-to-Many (Different Messages to Different Numbers)

[](#-many-to-many-different-messages-to-different-numbers)

```
$messages = [
    ['to' => '8801712345678', 'message' => 'Hello Mr. Rahman'],
    ['to' => '8801912345678', 'message' => 'Welcome Ms. Akter'],
];

Sms::sendBulk($messages);
```

---

💰 Checking Balance
------------------

[](#-checking-balance)

```
$balance = Sms::balance();
echo "Remaining Credits: " . $balance;
```

---

📡 Delivery Report (DLR)
-----------------------

[](#-delivery-report-dlr)

BulkSMSBD sends the response of your request as **plain JSON text**.

Example response:

```
{
  "response_code": 202,
  "message_id": 59432678,
  "success_message": "SMS Submitted Successfully",
  "error_message": ""
}
```

---

🧰 Example API Response Codes
----------------------------

[](#-example-api-response-codes)

CodeDescription202Success1001Invalid Number1002Sender ID incorrect1003Missing Fields1005Internal Error1007Balance Insufficient1011User Not Found1032IP Not Whitelisted---

### 🧑‍💻 Developed &amp; Maintained By

[](#‍-developed--maintained-by)

**Rihab Rahman**
🌐
📧 Contact:

If you find this package helpful, consider giving it a ⭐ on [GitHub](https://github.com/rihabrahman/bulksmsbd-laravel)!

---

❤️ Contributing
---------------

[](#️-contributing)

Pull requests are welcome! Please fork the repo and submit a PR.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance64

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

217d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/30be2e76dabf6d3fd22c549150e14168aa1dd8aff7c15cce741611961a3216f7?d=identicon)[rihabrahman](/maintainers/rihabrahman)

---

Top Contributors

[![rihabrahman](https://avatars.githubusercontent.com/u/60827435?v=4)](https://github.com/rihabrahman "rihabrahman (5 commits)")

### Embed Badge

![Health badge](/badges/rihabrahman-bulksmsbd-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/rihabrahman-bulksmsbd-laravel/health.svg)](https://phpackages.com/packages/rihabrahman-bulksmsbd-laravel)
```

###  Alternatives

[mckenziearts/laravel-notify

Flexible flash notifications for Laravel

1.7k1.1M5](/packages/mckenziearts-laravel-notify)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/apn

Apple APN Push Notification Channel

2021.9M4](/packages/laravel-notification-channels-apn)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[illuminate/mail

The Illuminate Mail package.

5910.1M391](/packages/illuminate-mail)

PHPackages © 2026

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