PHPackages                             frolax/ultimate-sms-notification-channel - 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. frolax/ultimate-sms-notification-channel

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

frolax/ultimate-sms-notification-channel
========================================

Laravel notification channel for Ultimate SMS

v1.0.0(10mo ago)010MITPHPPHP ^8.0

Since Jul 3Pushed 10mo agoCompare

[ Source](https://github.com/bishwajitcadhikary/ultimate-sms-notification-channel)[ Packagist](https://packagist.org/packages/frolax/ultimate-sms-notification-channel)[ Docs](https://github.com/bishwajitcadhikary/ultimate-sms-notification-channel)[ RSS](/packages/frolax-ultimate-sms-notification-channel/feed)WikiDiscussions main Synced 2mo ago

READMEChangelog (1)Dependencies (5)Versions (2)Used By (0)

Ultimate SMS Notification Channel for Laravel
=============================================

[](#ultimate-sms-notification-channel-for-laravel)

This package provides a Laravel notification channel for sending SMS via the Ultimate SMS HTTP API.

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

[](#installation)

```
composer require frolax/ultimate-sms-notification-channel
```

Publish the config file:

```
php artisan vendor:publish --provider="UltimateSmsNotificationChannel\\UltimateSmsServiceProvider" --tag=config
```

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

[](#configuration)

Add the following to your `.env`:

```
ULTIMATE_SMS_BASE_URL=https://sms.frolax.net
ULTIMATE_SMS_API_KEY=your_api_key
ULTIMATE_SMS_SENDER_ID=YourName
ULTIMATE_SMS_DLT_TEMPLATE_ID=optional

```

- `ULTIMATE_SMS_BASE_URL` should be the website base URL only (e.g., `https://sms.frolax.net`).
- The package will automatically use the correct API endpoint for sending SMS.

Usage
-----

[](#usage)

In your notification:

```
use UltimateSmsNotificationChannel\UltimateSmsMessage;

public function via($notifiable)
{
    return ['ultimate_sms'];
}

public function toUltimateSms($notifiable)
{
    return (new UltimateSmsMessage())
        ->content('This is a test message');
}
```

Or route notification:

```
use Illuminate\Support\Facades\Notification;
use App\Notifications\YourNotification;

Notification::route('ultimate_sms', '31612345678')->notify(new YourNotification());
```

### Sending to Multiple Recipients

[](#sending-to-multiple-recipients)

You can send to multiple numbers by passing a comma-separated string:

```
UltimateSmsMessage::create('This is a test message')
    ->to('31612345678,880172145789');
```

### Using the Facade Directly

[](#using-the-facade-directly)

You can send an SMS directly using the facade if you want to bypass Laravel's notification system:

```
use UltimateSmsNotificationChannel\Facades\UltimateSms;

UltimateSms::send([
    'recipient' => '+8801322635808',
    'message' => 'Hello',
    'sender_id' => 'HaQuick',
    'type' => 'plain',
]);
```

### Optional Parameters

[](#optional-parameters)

- `sender_id`: Override the default sender ID.
- `type`: Set the message type (default: `plain`).
- `schedule_time`: Schedule the SMS (format: `YYYY-MM-DD HH:MM`).
- `dlt_template_id`: Set a DLT template ID (optional).

Testing
-------

[](#testing)

```
vendor/bin/pest
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance54

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity41

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

313d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/05f9a72ab9f1685e2d1e829714d6c3470ea38acc3bdf3b6608ac5edb4997b835?d=identicon)[bishwajitcadhikary](/maintainers/bishwajitcadhikary)

---

Top Contributors

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

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/frolax-ultimate-sms-notification-channel/health.svg)

```
[![Health](https://phpackages.com/badges/frolax-ultimate-sms-notification-channel/health.svg)](https://phpackages.com/packages/frolax-ultimate-sms-notification-channel)
```

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/webpush

Web Push Notifications driver for Laravel.

7984.5M16](/packages/laravel-notification-channels-webpush)[laravel-notification-channels/fcm

FCM (Firebase Cloud Messaging) Notifications Driver for Laravel

5917.0M16](/packages/laravel-notification-channels-fcm)[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/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[laravel-notification-channels/apn

Apple APN Push Notification Channel

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

PHPackages © 2026

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