PHPackages                             tzurbaev/unisender-notifications-channel - 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. tzurbaev/unisender-notifications-channel

ActiveLibrary

tzurbaev/unisender-notifications-channel
========================================

Unisender Notifications Channel for Laravel

0.9.0(8y ago)01162MITPHPPHP &gt;=7.1

Since Dec 3Pushed 8y ago1 watchersCompare

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

READMEChangelogDependencies (5)Versions (2)Used By (0)

Unisender Notifications Channel For Laravel 5.5+
================================================

[](#unisender-notifications-channel-for-laravel-55)

[![Build Status](https://camo.githubusercontent.com/3344fc7633a21cc1135fb086b5dfee21eea3215c99fe35573ba3c4075770fa9c/68747470733a2f2f6170692e7472617669732d63692e6f72672f747a7572626165762f756e6973656e6465722d6e6f74696669636174696f6e732d6368616e6e656c2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/tzurbaev/unisender-notifications-channel)[![StyleCI](https://camo.githubusercontent.com/9915392f1b7f8395287f73fb81e50a4b921871ee661c8143ca968c782e856d76/68747470733a2f2f7374796c6563692e696f2f7265706f732f3131323930343130302f736869656c643f6272616e63683d6d6173746572267374796c653d666c6174)](https://styleci.io/repos/112904100)[![ScrutinizerCI](https://camo.githubusercontent.com/0e603302ee9f9533d47414e586df28809bde04a54e1d309df3ee5cb775a5af88/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f747a7572626165762f756e6973656e6465722d6e6f74696669636174696f6e732d6368616e6e656c2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/tzurbaev/unisender-notifications-channel/)[![Latest Version on Packagist](https://camo.githubusercontent.com/44aa56d015b5de343865d93284163fef46d0175196ef07c650487d67b34446ac/68747470733a2f2f706f7365722e707567782e6f72672f747a7572626165762f756e6973656e6465722d6e6f74696669636174696f6e732d6368616e6e656c2f76657273696f6e3f666f726d61743d666c6174)](https://packagist.org/packages/tzurbaev/unisender-notifications-channel)[![Software License](https://camo.githubusercontent.com/aedcf59f1ca432f4a0e81b7a2070c5c32150c6444a9488d6698f15d18b154896/68747470733a2f2f706f7365722e707567782e6f72672f747a7572626165762f756e6973656e6465722d6e6f74696669636174696f6e732d6368616e6e656c2f6c6963656e73653f666f726d61743d666c6174)](LICENSE.md)

Requirements
------------

[](#requirements)

This package requires PHP 7.1 or higher.

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

[](#installation)

You can install the package via composer:

```
$ composer require tzurbaev/unisender-notifications-channel
```

### Setting up the Unisender Service

[](#setting-up-the-unisender-service)

Add Unisender API key to the `config/services.php` file:

```
'unisender' => [
    'api-key' => 'KEY_HERE',
],
```

This key will be used as default key for all notifications. You can always override it for concrete notifications.

Documentation
-------------

[](#documentation)

Add `UnisenderChannell::class` to notification's `via` method and implement `toUnisender($notifiable)` method:

```
