PHPackages                             astrotomic/notifynder-sender-nexmo - 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. astrotomic/notifynder-sender-nexmo

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

astrotomic/notifynder-sender-nexmo
==================================

Nexmo Sender for the Notifynder package.

1.1.0(9y ago)214MITPHPPHP &gt;=5.5.0

Since Jan 13Pushed 9y ago1 watchersCompare

[ Source](https://github.com/Astrotomic/notifynder-sender-nexmo)[ Packagist](https://packagist.org/packages/astrotomic/notifynder-sender-nexmo)[ RSS](/packages/astrotomic-notifynder-sender-nexmo/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (9)Versions (3)Used By (0)

Notifynder 4 Nexmo Sender - Laravel 5
=====================================

[](#notifynder-4-nexmo-sender---laravel-5)

[![GitHub release](https://camo.githubusercontent.com/1614fdc61f6d1f0cc64bdf30aa5a836fe36e2d72ab5aa4dfe4efdae8b8511b08/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d6e65786d6f2e7376673f7374796c653d666c61742d737175617265)](https://github.com/astrotomic/notifynder-sender-nexmo/releases)[![GitHub license](https://camo.githubusercontent.com/942e017bf0672002dd32a857c95d66f28c5900ab541838c6c664442516309c8a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666c61742d737175617265)](https://raw.githubusercontent.com/astrotomic/notifynder-sender-nexmo/master/LICENSE)[![GitHub issues](https://camo.githubusercontent.com/d12a7f0915c40620f9d6b6824f45be170f37801bb64f37d7a3d9ee65a273d2b6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d6e65786d6f2e7376673f7374796c653d666c61742d737175617265)](https://github.com/astrotomic/notifynder-sender-nexmo/issues)[![Total Downloads](https://camo.githubusercontent.com/956f8a31bc4524b98f5ca843e354487d809024f2dc83d3c36e5e16ff6f4ac3c8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d6e65786d6f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/astrotomic/notifynder-sender-nexmo)

[![Travis branch](https://camo.githubusercontent.com/2b1c60d2819c6f4b280959340f2fb788db58416fac4ef7ccccf7252aca539842/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f417374726f746f6d69632f6e6f746966796e6465722d73656e6465722d6e65786d6f2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/Astrotomic/notifynder-sender-nexmo/branches)[![StyleCI](https://camo.githubusercontent.com/90b9a097a5c40abdb29dbf54834959a80e57865e157d65708461149c2e8ff8b8/68747470733a2f2f7374796c6563692e696f2f7265706f732f37383835393139342f736869656c64)](https://styleci.io/repos/78859194)

[![Code Climate](https://camo.githubusercontent.com/53eddd55188353a1253cdbda7c0efe3a5338b1cf4b01614d670816b0444d54f1/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6769746875622f417374726f746f6d69632f6e6f746966796e6465722d73656e6465722d6e65786d6f2e7376673f7374796c653d666c61742d737175617265)](https://codeclimate.com/github/Astrotomic/notifynder-sender-nexmo)

[![Slack Team](https://camo.githubusercontent.com/f11b571e287b4400bb775f6ae4b9ee50ba0a96186697735aa663860d1e2ed179/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f736c61636b2d617374726f746f6d69632d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://astrotomic.slack.com)[![Slack join](https://camo.githubusercontent.com/8c57b06b8323408ec318f72a06ae3a99fffdc723d7d404859ce6d3796d4993a5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f736c61636b2d6a6f696e2d677265656e2e7376673f7374796c653d736f6369616c)](https://notifynder.signup.team)

Documentation: **[Notifynder Docu](http://notifynder.info)**

---

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

[](#installation)

### Step 1

[](#step-1)

```
composer require astrotomic/notifynder-sender-nexmo

```

### Step 2

[](#step-2)

Add the following string to `config/app.php`

**Providers array:**

```
Astrotomic\Notifynder\NotifynderSenderNexmoServiceProvider::class,

```

### Step 3

[](#step-3)

Add the following array to `config/notifynder.php`

```
'senders' => [
    'nexmo' => [
        'key' => '',
        'secret' => '',
        'store' => false, // wether you want to also store the notifications in database
    ],
],
```

Register the sender callback in your `app/Providers/AppServiceProvider.php`

```
