PHPackages                             karlos3098/simply-connect-laravel-notifications - 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. karlos3098/simply-connect-laravel-notifications

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

karlos3098/simply-connect-laravel-notifications
===============================================

It allows you to send SMS from the simply-connect.ovh platform via Laravel notifications

1.0.1(1y ago)0409MITPHPPHP ^8.2|^8.3

Since Apr 1Pushed 1y ago1 watchersCompare

[ Source](https://github.com/karlos1998/simply-connect-laravel-notifications)[ Packagist](https://packagist.org/packages/karlos3098/simply-connect-laravel-notifications)[ RSS](/packages/karlos3098-simply-connect-laravel-notifications/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (8)Versions (4)Used By (0)

### Simply Connect Laravel Notifications

[](#simply-connect-laravel-notifications)

[!["Buy Me A Coffee"](https://camo.githubusercontent.com/9f44ce2dc3b3eecdd02598900866ffc518801df1932849703dae1e5ce5031070/68747470733a2f2f7777772e6275796d6561636f666665652e636f6d2f6173736574732f696d672f637573746f6d5f696d616765732f6f72616e67655f696d672e706e67)](https://www.buymeacoffee.com/karlos)

#### A library dedicated to Laravel 10/11 introducing integration with [Simply Connect](https://simply-connect.ovh) for the built-in notification class in Laravel

[](#a-library-dedicated-to-laravel-1011-introducing-integration-with-simply-connect-for-the-built-in-notification-class-in-laravel)

---

In the words of introduction. The Simply Connect application is also my project, the aim of which is to send SMS from YOUR devices. All you need to do is create an account on the platform, find an old Android phone in the drawer, install the .apk and that's it. Detailed information can be found [on the portal](https://simply-connect.ovh)

---

Install:

```
composer require karlos3098/simply-connect-laravel-notifications
```

```
php artisan vendor:publish --provider="Karlos3098\SimplyConnectLaravelNotifications\SimplyConnectServiceProvider" --tag=config
```

Then add the API key from the simply-connect.ovh platform and the ID of the device from which messages will be sent to the .env

```
SIMPLY_CONNECT_API_KEY=API-KEY-HERE
SIMPLY_CONNECT_DEFAULT_DEVICE_ID=DEVICE-ID-HERE

```

---

If you want to send an SMS message, create a new notification class in the same way as for sending emails, but additionally declare the toSimplyConnect method. it is also recommended to use the SimplyConnectNotification interface

In this way, the message will be sent to the number that should appear in the "phone\_number" field in a given model.

```
