PHPackages                             tekkenking/swissecho - 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. tekkenking/swissecho

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

tekkenking/swissecho
====================

A multigateway laravel SMS notification channel package

0.7.1(8mo ago)14532MITPHPPHP ^8.1

Since Jul 5Pushed 8mo ago2 watchersCompare

[ Source](https://github.com/tekkenking/swissecho)[ Packagist](https://packagist.org/packages/tekkenking/swissecho)[ RSS](/packages/tekkenking-swissecho/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)DependenciesVersions (33)Used By (0)

Swissecho Laravel SMS Notification Channel
==========================================

[](#swissecho-laravel-sms-notification-channel)

Swissecho is a Laravel SMS notification channel package that provides a convenient way to send SMS messages through various gateways. This package is designed to be flexible, allowing you to customize the message content, recipient, sender, and gateway.

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

[](#installation)

To install the Swissecho package, simply require it via Composer:

```
composer require tekkenking/swissecho
```

Laravel Version Compatibility
-----------------------------

[](#laravel-version-compatibility)

For Laravel 5.5 and above, the package should be automatically discovered. For Laravel versions below 5.5, you may need to add the service provider to your config/app.php file:

```
'providers' => [
    // ...
    Tekkenking\Swissecho\SwissechoServiceProvider::class,
],
```

Basic Usage
-----------

[](#basic-usage)

The following are different ways to use the Swissecho package:

### General Usage

[](#general-usage)

```
    Swissecho::route('sms', function($ms) {
        return $ms->to('XXXXXXXXXXXX, XXXXXXXXXXXX ')
            ->content('Wonders shall never end')
            ->line('Hello world');
            //->gateway('routemobile') //optional
            //->sender('SimbooBiz'); //optional
    })
    ->to('XXXXXXXXXXXX') //optional
    ->sender('Smart') //optional
    ->gateway('termii') //optional
    ->go();
```

### Use Case 1 (SMS)

[](#use-case-1-sms)

```
    swissecho()->route('sms', function($ms) {
        return $ms->to('XXXXXXXXXXXX, XXXXXXXXXXXX ')
            ->content('Wonders shall never end')
            ->line('Hello world');
            //->gateway('routemobile') //optional
            //->sender('SimbooBiz'); //optional
    })
    ->to('XXXXXXXXXXXX') //optional
    ->sender('Smart') //optional
    ->gateway('termii') //optional
    ->go();
```

### Use Case 2

[](#use-case-2)

```
    swissecho()->quick('XXXXXXXXXXXX', "My name is bola");
```

### Use Case 3 (Slack)

[](#use-case-3-slack)

```
    swissecho()->message("Hello world")
    ->to('XXXXXXXXXXXX')
    //->sender('Raimi')
    //->gateway('termii')
    ->route('slack')
    ->go();
```

### Use Case 4 (Vonage)

[](#use-case-4-vonage)

```
    swissecho()->gateway('vonage')->quick('XXXXXXXXXXXX', "My name is bola");
```

### Use Case 5 (Termii)

[](#use-case-5-termii)

```
    $sw = swissecho();
    //$sw->mockNotifiable($user);
    $sw->gateway('termii');
    $sw->to = "XXXXXXXXXXXX";
    $sw->sender = "AXIX";
    $sw->message = "The world is a beauty place created by GOD";
    $sw->go();
```

Feel free to customize the examples based on your specific use case and requirements.

License
-------

[](#license)

This package is open-sourced software licensed under the MIT license.

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance62

Regular maintenance activity

Popularity18

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

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

Every ~27 days

Recently: every ~36 days

Total

30

Last Release

241d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6a921b3fb117a6576493236ef9dcd2754091baa974465c4e1f1e4fb3597680dd?d=identicon)[tekkenking](/maintainers/tekkenking)

---

Top Contributors

[![tekkenking](https://avatars.githubusercontent.com/u/1980114?v=4)](https://github.com/tekkenking "tekkenking (59 commits)")[![anice1](https://avatars.githubusercontent.com/u/30138845?v=4)](https://github.com/anice1 "anice1 (9 commits)")[![angwa](https://avatars.githubusercontent.com/u/20344942?v=4)](https://github.com/angwa "angwa (2 commits)")

### Embed Badge

![Health badge](/badges/tekkenking-swissecho/health.svg)

```
[![Health](https://phpackages.com/badges/tekkenking-swissecho/health.svg)](https://phpackages.com/packages/tekkenking-swissecho)
```

###  Alternatives

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M228](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

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

PHPackages © 2026

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