PHPackages                             lshin/sendgrid-newsletter - 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. lshin/sendgrid-newsletter

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

lshin/sendgrid-newsletter
=========================

Laravel 4 Wrapper for the Sendgrid Newsletter API Client

v0.90(11y ago)06.5k1MITPHPPHP &gt;=5.3.0

Since Oct 29Pushed 11y ago1 watchersCompare

[ Source](https://github.com/lshin/sendgrid-newsletter)[ Packagist](https://packagist.org/packages/lshin/sendgrid-newsletter)[ RSS](/packages/lshin-sendgrid-newsletter/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (3)Used By (0)

sendgrid-newsletter
===================

[](#sendgrid-newsletter)

Laravel 4 wrapper of the sendgrid newsletter php library.

- **Author:** Leo Shin
- **Version:** 0.9.0

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

[](#installation)

To install the API add this to your composer.json:

```
"require": {
        "neoseeker/sendgridphp": "dev-master",
        "lshin/sendgrid-newsletter": "0.*"
}
```

..then run `composer update`. (If you have problems getting that to work, try running `php artisan dump-autoload` followed by `composer update` again).

Register the service provider in `app/config/app.php` in the `providers` array:

```
'providers' => array(
    //...
    'Lshin\SendgridNewsletter\SendgridNewsletterServiceProvider',
)
```

Then create the config file `app/config/sendgridnewsletter.php` based on the config file in the package.

```
