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

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

hocza/sendy
===========

Sendy API implementation for Laravel

1.1.1(2y ago)74202.1k↓15.8%20[4 issues](https://github.com/hocza/sendy-laravel/issues)MITPHPPHP &gt;=5.3.0CI failing

Since Dec 7Pushed 2y ago4 watchersCompare

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

READMEChangelog (3)Dependencies (1)Versions (4)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/f729ef0bc58c07a80292028a3e468bb585556d60fb23f163e237d71fc12ae04e/68747470733a2f2f636f6465636c696d6174652e636f6d2f6769746875622f686f637a612f73656e64792d6c61726176656c2f6261646765732f6770612e737667)](https://codeclimate.com/github/hocza/sendy-laravel) [![Latest Stable Version](https://camo.githubusercontent.com/91641cdc3f88cc3bfefba9c8f44cf4ffdaeb157b3410f0755fa4bc45b5fceec5/68747470733a2f2f706f7365722e707567782e6f72672f686f637a612f73656e64792f762f737461626c65)](https://packagist.org/packages/hocza/sendy) [![Total Downloads](https://camo.githubusercontent.com/ba0f3289a4c96a4f3ad664a4476ea047a333f20cfdb0620e4cd6fbaf3cca30d8/68747470733a2f2f706f7365722e707567782e6f72672f686f637a612f73656e64792f646f776e6c6f616473)](https://packagist.org/packages/hocza/sendy) [![Latest Unstable Version](https://camo.githubusercontent.com/c86fd6686db2df5bacebab73341dbaca60acac39386c0f70b5d207945a9b5c75/68747470733a2f2f706f7365722e707567782e6f72672f686f637a612f73656e64792f762f756e737461626c65)](https://packagist.org/packages/hocza/sendy) [![License](https://camo.githubusercontent.com/536655c6e9824f03664ffd4806d64332a14bc5802e90fccf12214e0c7bb662d3/68747470733a2f2f706f7365722e707567782e6f72672f686f637a612f73656e64792f6c6963656e7365)](https://packagist.org/packages/hocza/sendy)

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

[](#installation)

```
composer require hocza/sendy:1.*
```

or append your composer.json with:

```
{
    "require" : {
        "hocza/sendy": "1.*"
    }
}
```

Add the following settings to the config/app.php

Service provider:

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

For the `Sendy::` facade

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

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

[](#configuration)

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

It will create sendy.php within the config directory.

```
