PHPackages                             kvalitetskontroll/laravel-notification-channel-teletopia-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. kvalitetskontroll/laravel-notification-channel-teletopia-sms

ActiveLibrary

kvalitetskontroll/laravel-notification-channel-teletopia-sms
============================================================

TeletopiaSMS Notification Channel For Laravel

v1.0.0(5y ago)1479MITPHPPHP &gt;=7.4

Since Apr 28Pushed 5y ago1 watchersCompare

[ Source](https://github.com/kvalitetskontroll/laravel-notification-channel-teletopia-sms)[ Packagist](https://packagist.org/packages/kvalitetskontroll/laravel-notification-channel-teletopia-sms)[ Docs](https://github.com/kvalitetskontroll/laravel-notification-channel-teletopia-sms)[ RSS](/packages/kvalitetskontroll-laravel-notification-channel-teletopia-sms/feed)WikiDiscussions master Synced 1mo ago

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

TeletopiaSMS Notifications Channel for Laravel
----------------------------------------------

[](#teletopiasms-notifications-channel-for-laravel)

This package makes it easy to send notifications using [TeletopiaSMS](https://www.teletopiasms.no/p/) with Laravel 5.5+, 6.x and 7.x

Contents
--------

[](#contents)

- [Installation](#installation)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Security](#security)
- [Contributing](#contributing)
- [License](#license)

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

[](#installation)

- Install via composer
- Add the configuration to your `services.php` config file:

```
'teletopiasms' => [
    'user' => env('SERVICES_TELETOPIASMS_USER'),
    'password' => env('SERVICES_TELETOPIASMS_PASSWORD'),
    'url' => '', // api url
    'sender' => '', // sender name
    'whitelist' => array_filter(array_map('trim', explode(',', env('SERVICES_TELETOPIASMS_WHITELIST', '')))),
],

```

- Add credentials to the `.env` file

```
SERVICES_TELETOPIASMS_USER='' // username
SERVICES_TELETOPIASMS_PASSWORD='' // password
SERVICES_TELETOPIASMS_WHITELIST='' // comma separated list of phones which could get sms on local/beta

```

Usage
-----

[](#usage)

You can use the channel in your `via()` method inside the notification:

```
use Illuminate\Notifications\Notification;
use Kvalitetskontroll\TeletopiaSMS\TeletopiaSmsMessage;
use Kvalitetskontroll\TeletopiaSMS\TeletopiaSmsChannel;

class WelcomeNotification extends Notification
{
    public function via($notifiable)
    {
        return [TeletopiaSmsChannel::class];
    }

    public function toTeletopiasms($notifiable)
    {
        return (new TeletopiaSmsMessage)
            ->message("Welcome to our system");
    }
}

```

In your notifiable model, make sure to include a `routeNotificationForTeletopiasms()` method, which returns a phone number with the country code. Else you need to specify the phone number manually.

```
public function routeNotificationForTeletopiasms()
{
    return $this->phone; // 4712345678
}

```

### Available Message methods

[](#available-message-methods)

#### Required

[](#required)

string `message()`: Sets the content of the notification message.

#### Optional

[](#optional)

array|string `recipients()`: Sets the recipient number(s) of the sms.

*\* The phone number should be a number without leading '+', only the country code and the subscriber`s number including the area code.*

string `sender()`: Sets the sender's name or phone number.

string `salutation()`: Sets the salutation of the message.

string `greeting()`: Sets the greeting of the message.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% 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

1840d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0c74f395b3b56123bb0342057827826d0aa95a21ec9a3d3af78a8440cd105a75?d=identicon)[kvalitetskontroll](/maintainers/kvalitetskontroll)

---

Top Contributors

[![didotsonev](https://avatars.githubusercontent.com/u/25154121?v=4)](https://github.com/didotsonev "didotsonev (2 commits)")[![carestad](https://avatars.githubusercontent.com/u/65263?v=4)](https://github.com/carestad "carestad (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/kvalitetskontroll-laravel-notification-channel-teletopia-sms/health.svg)

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

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[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)[s-ichikawa/laravel-sendgrid-driver

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

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[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)
