PHPackages                             naroga/sendy-laravel - 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. naroga/sendy-laravel

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

naroga/sendy-laravel
====================

Sendy API implementation for Laravel

1.0.0(10y ago)016MITPHPPHP &gt;=5.3.0

Since Dec 7Pushed 8y agoCompare

[ Source](https://github.com/naroga/sendy-laravel)[ Packagist](https://packagist.org/packages/naroga/sendy-laravel)[ RSS](/packages/naroga-sendy-laravel/feed)WikiDiscussions master Synced 2d ago

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

[![Sendy](https://camo.githubusercontent.com/e708f9a4274fbd965b0d1ed7564447681a2a1e5c91010d251a28fd1c412b3b76/687474703a2f2f64656d6f2e686f637a612e636f6d2f6769746875622f73656e64792d6c61726176656c2f73656e64792d6c61726176656c2e706e67)](https://camo.githubusercontent.com/e708f9a4274fbd965b0d1ed7564447681a2a1e5c91010d251a28fd1c412b3b76/687474703a2f2f64656d6f2e686f637a612e636f6d2f6769746875622f73656e64792d6c61726176656c2f73656e64792d6c61726176656c2e706e67)

Sendy Laravel
=============

[](#sendy-laravel)

A service provider for Sendy API in Laravel 5

[![](https://camo.githubusercontent.com/ab5af6d76316752542eb8d9e0f5dc253e3d51c358525cb49c9d76b3bdc487542/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f4e61726f67612f73656e64792d6c61726176656c2f6261646765732f6770612e737667)](https://codeclimate.com/github/Naroga/sendy-laravel) [![Latest Stable Version](https://camo.githubusercontent.com/d53a26b07e392d688d12acea0ecbb512f669a537d344e4a4f381f8b6ea8c680c/68747470733a2f2f706f7365722e707567782e6f72672f6e61726f67612f73656e64792d6c61726176656c2f762f737461626c65)](https://packagist.org/packages/naroga/sendy-laravel) [![Total Downloads](https://camo.githubusercontent.com/28e32ebef65cd71f514972fb37f3f1cfbd8ebd6d47569591038a2a7283a62f58/68747470733a2f2f706f7365722e707567782e6f72672f6e61726f67612f73656e64792d6c61726176656c2f646f776e6c6f616473)](https://packagist.org/packages/naroga/sendy-laravel) [![Latest Unstable Version](https://camo.githubusercontent.com/ce4868ebd494d13e9af0e339da54ccd4ef1d5e2cf831205a603a8d6f264e8c42/68747470733a2f2f706f7365722e707567782e6f72672f6e61726f67612f73656e64792d6c61726176656c2f762f756e737461626c65)](https://packagist.org/packages/naroga/sendy-laravel) [![License](https://camo.githubusercontent.com/536b5bd0efe3c31f7afc322b6aebddd5580e26945ac76656e5c9d1b917df633f/68747470733a2f2f706f7365722e707567782e6f72672f6e61726f67612f73656e64792d6c61726176656c2f6c6963656e7365)](https://packagist.org/packages/naroga/sendy-laravel)

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

[](#installation)

```
composer require naroga/sendy-laravel:1.*
```

or append your composer.json with:

```
{
    "require" : {
        "naroga/sendy-laravel": "1.*"
    }
}
```

Add the following settings to the config/app.php

Service provider:

```
'providers' => [
    // ...
    'Naroga\Sendy\SendyServiceProvider',
]
```

For the `Sendy::` facade

```
'aliases' => [
    // ...
    'Sendy' => 'Naroga\Sendy\Facades\Sendy',
]
```

Configuration
-------------

[](#configuration)

```
php artisan vendor:publish --provider="Naroga\Sendy\SendyServiceProvider"
```

It will create sendy.php within the config directory.

```
