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

Abandoned → [laravel-notification-channels/twilio](/?search=laravel-notification-channels%2Ftwilio)ArchivedLibrary[Mail &amp; Notifications](/categories/mail)

astrotomic/notifynder-sender-twilio
===================================

Twilio Sender for the Notifynder package.

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

Since Jan 6Pushed 9y ago1 watchersCompare

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

READMEChangelog (3)Dependencies (5)Versions (4)Used By (0)

Notifynder 4 Twilio Sender - Laravel 5
======================================

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

[![GitHub release](https://camo.githubusercontent.com/c03aa25bc8245d09843c0abee5fd2da699cb914505ffec73109bb2f5156b9ee6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d7477696c696f2e7376673f7374796c653d666c61742d737175617265)](https://github.com/astrotomic/notifynder-sender-twilio/releases)[![GitHub license](https://camo.githubusercontent.com/942e017bf0672002dd32a857c95d66f28c5900ab541838c6c664442516309c8a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666c61742d737175617265)](https://raw.githubusercontent.com/astrotomic/notifynder-sender-twilio/master/LICENSE)[![GitHub issues](https://camo.githubusercontent.com/952224e62da8fb44194dd8a1c585e1d8ea6d66b33323fb718ba255d3e10a3df4/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d7477696c696f2e7376673f7374796c653d666c61742d737175617265)](https://github.com/astrotomic/notifynder-sender-twilio/issues)[![Total Downloads](https://camo.githubusercontent.com/71306a3ca148ab78d392a09166e3f12d7c7b4bd8d84e1e5c75d1b88c10a1aa1e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f617374726f746f6d69632f6e6f746966796e6465722d73656e6465722d7477696c696f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/astrotomic/notifynder-sender-twilio)

[![StyleCI](https://camo.githubusercontent.com/c375e489f6b35eebc4bd39580c125470795c3e8f11ff4efaccbd314a11367e0f/68747470733a2f2f7374796c6563692e696f2f7265706f732f37383139373930342f736869656c64)](https://styleci.io/repos/78197904)

[![Code Climate](https://camo.githubusercontent.com/2da5199f7cc8efddf2204a58481096f149b377bbe41ff9a4297be5606d0f2eb8/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636c696d6174652f6769746875622f417374726f746f6d69632f6e6f746966796e6465722d73656e6465722d7477696c696f2e7376673f7374796c653d666c61742d737175617265)](https://codeclimate.com/github/Astrotomic/notifynder-sender-twilio)

[![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-twilio

```

### Step 2

[](#step-2)

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

**Providers array:**

```
Astrotomic\Notifynder\NotifynderSenderTwilioServiceProvider::class,

```

### Step 3

[](#step-3)

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

```
'senders' => [
    'twilio' => [
        'sid' => '',
        'token' => '',
        'store' => false, // wether you want to also store the notifications in database
    ],
],
```

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

```
