PHPackages                             bonsi/laravel-newsletter-getresponse - 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. bonsi/laravel-newsletter-getresponse

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

bonsi/laravel-newsletter-getresponse
====================================

Manage GetResponse newsletters in Laravel 5

3.0.3(9y ago)11.3k2[2 issues](https://github.com/bonsi/laravel-newsletter-getresponse/issues)MITPHPPHP ^5.5|^7.0

Since May 7Pushed 5y ago2 watchersCompare

[ Source](https://github.com/bonsi/laravel-newsletter-getresponse)[ Packagist](https://packagist.org/packages/bonsi/laravel-newsletter-getresponse)[ Docs](https://github.com/spatie/laravel-newsletter)[ RSS](/packages/bonsi-laravel-newsletter-getresponse/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (4)Versions (15)Used By (0)

Manage GetResponse newsletters in Laravel 5
===========================================

[](#manage-getresponse-newsletters-in-laravel-5)

### Note: work in progress!

[](#note-work-in-progress)

Fork of the awesome \[[![spatie/laravel-newsletter](https://github.com/spatie/laravel-newsletter)](https://github.com/spatie/laravel-newsletter)\] "Beter goed gejat dan slecht verzonnen" :)

This package provides an easy way to integrate GetResponse with Laravel 5. Behind the scenes v3 for the GetResponse API is used. Here are some examples of what you can do with the package:

```
Newsletter::subscribe('rincewind@discworld.com');

Newsletter::unsubscribe('the.luggage@discworld.com');

//Merge variables can be passed as the second argument
Newsletter::subscribe('sam.vines@discworld.com', ['firstName'=>'Sam', 'lastName'=>'Vines']);

//Subscribe someone to a specific list by using the third argument:
Newsletter::subscribe('nanny.ogg@discworld.com', ['firstName'=>'Nanny', 'lastName'=>'Ogg'], 'Name of your list');

//Get some member info, returns an array described in the official docs
Newsletter::getMember('lord.vetinari@discworld.com');

//Returns a boolean
Newsletter::hasMember('greebo@discworld.com');

//If you want to do something else, you can get an instance of the underlying API:
Newsletter::getApi();
```

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

[](#installation)

You can install this package via Composer using:

```
composer require bonsi/laravel-newsletter-getresponse
```

You must also install this service provider.

```
// config/app.php
'providers' => [
    ...
    Bonsi\GetResponse\Newsletter\NewsletterServiceProvider::class,
    ...
];
```

If you want to make use of the facade you must install it as well.

```
// config/app.php
'aliases' => [
    ..
    'Newsletter' => Bonsi\GetResponse\Newsletter\NewsletterFacade::class,
];
```

To publish the config file to `app/config/laravel-newsletter-getresponse.php` run:

```
php artisan vendor:publish --provider="Bonsi\GetResponse\Newsletter\NewsletterServiceProvider"
```

This wil publish a file `laravel-newsletter-getresponse.php` in your config directory with the following contents:

```
return [

        /*
         * The api key of a GetResponse account. You can find yours here:
         * https://us10.admin.mailchimp.com/account/api-key-popup/
         */
        'apiKey' => env('GETRESPONSE_APIKEY'),

        /*
         * When not specifying a listname in the various methods,
         *  this list name will be used.
         */
        'defaultListName' => 'subscribers',

        /*
         * Here you can define properties of the lists you want to
         * send campaigns.
         */
        'lists' => [

            /*
             * This key is used to identify this list. It can be used
             * in the various methods provided by this package.
             *
             * You can set it to any string you want and you can add
             * as many lists as you want.
             */
            'subscribers' => [

                /*
                 * A getresponse campaign id. Check the mailchimp docs if you don't know
                 * how to get this value:
                 * http://kb.mailchimp.com/lists/managing-subscribers/find-your-list-id
                 */
                 'id' => env('GETRESPONSE_DEFAULT_LIST_ID'),
            ],
        ],
];
```

Usage
-----

[](#usage)

After you've installed the package and filled in the values in the config-file working with this package will be a breeze. All the following examples use the facade. Don't forget to import it at the top of your file.

```
use Newsletter;
```

### Subscribing and unsubscribing

[](#subscribing-and-unsubscribing)

Subscribing an email address can be done like this:

```
use Newsletter;

Newsletter::subscribe('rincewind@discworld.com');
```

Let's unsubcribe someone:

```
Newsletter::unsubscribe('the.luggage@discworld.com');
```

You can pass some merge variables as the second argument:

```
Newsletter::subscribe('rincewind@discworld.com', ['firstName'=>'Rince', 'lastName'=>'Wind']);
```

Please note the at the time of this writing the default merge variables in MailChimp are named `FNAME` and `LNAME`. In our examples we use `firstName` and `lastName` for extra readability.

You can subscribe someone to a specific list by using the third argument:

```
Newsletter::subscribe('rincewind@discworld.com', ['firstName'=>'Rince', 'lastName'=>'Wind'], 'subscribers');
```

That third argument is the name of a list you configured in the config file.

You can also unsubscribe someone from a specific list:

```
Newsletter::unsubscribe('rincewind@discworld.com', 'subscribers');
```

### Getting subscriber info

[](#getting-subscriber-info)

You can get information on a subscriber by using the `getMember`-function:

```
Newsletter::getMember('lord.vetinari@discworld.com');
```

This will return an array with information on the subscriber. If there's no one subscribed with that e-mailaddress the function will return `false`

There's also a convience method to check if some in subscribed:

```
Newsletter::hasMember('nanny.ogg@discworld.com'); //returns a bool
```

### Creating a campaign

[](#creating-a-campaign)

This is how you create a campaign:

```
/**
 * @param string $fromName
 * @param string $replyTo
 * @param string $subject
 * @param string $html
 * @param string $listName
 * @param array  $options
 * @param array  $contentOptions
 *
 * @return array|bool
 *
 * @throws \Bonsi\GetResponse\Newsletter\Exceptions\InvalidNewsletterList
 */
public function createCampaign($fromName, $replyTo, $subject, $html = '', $listName = '', $options = [], $contentOptions = [])
```

Note the campaign will only be created, no mails will be sent out.

### Handling errors

[](#handling-errors)

If something went wrong you can get the last error with

```
Newsletter::getLastError();
```

If you just want to make sure if the last action succeeded you can to this:

```
Newsletter::lastActionSucceeded();
```

### Need something else?

[](#need-something-else)

If you need more functionality you get an instance of the underlying [GetResponse Api](https://github.com/GetResponse/getresponse-api-php) with:

```
$api = Newsletter::getApi();
```

Testing
-------

[](#testing)

Run the tests with:

```
vendor/bin/phpunit
```

Credits
-------

[](#credits)

- [Freek Van der Herten](https://github.com/freekmurze)
- [All Contributors](../../contributors)
- [Bonsi](https://github.com/bonsi)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 83.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~33 days

Recently: every ~51 days

Total

14

Last Release

3642d ago

Major Versions

0.0.1 → 1.0.02015-05-07

1.1.0 → 2.0.02015-06-24

2.2.0 → 3.0.02016-04-22

PHP version history (2 changes)0.0.1PHP &gt;=5.4.0

3.0.0PHP ^5.5|^7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/cf6940bf12b79f962999bbd340840481e82ec31b461645cccde7021e86752499?d=identicon)[bonsi](/maintainers/bonsi)

---

Top Contributors

[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (98 commits)")[![bonsi](https://avatars.githubusercontent.com/u/1137656?v=4)](https://github.com/bonsi "bonsi (8 commits)")[![lartisan](https://avatars.githubusercontent.com/u/7920412?v=4)](https://github.com/lartisan "lartisan (5 commits)")[![sebastiandedeyne](https://avatars.githubusercontent.com/u/1561079?v=4)](https://github.com/sebastiandedeyne "sebastiandedeyne (3 commits)")[![drbyte](https://avatars.githubusercontent.com/u/404472?v=4)](https://github.com/drbyte "drbyte (1 commits)")[![pixelpeter](https://avatars.githubusercontent.com/u/6502630?v=4)](https://github.com/pixelpeter "pixelpeter (1 commits)")[![remkobrenters](https://avatars.githubusercontent.com/u/4686406?v=4)](https://github.com/remkobrenters "remkobrenters (1 commits)")

---

Tags

laravelmailchimpnewsletter

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/bonsi-laravel-newsletter-getresponse/health.svg)

```
[![Health](https://phpackages.com/badges/bonsi-laravel-newsletter-getresponse/health.svg)](https://phpackages.com/packages/bonsi-laravel-newsletter-getresponse)
```

###  Alternatives

[spatie/laravel-newsletter

Manage Mailcoach, MailChimp and MailerLite newsletters in Laravel

1.7k6.6M27](/packages/spatie-laravel-newsletter)[propaganistas/laravel-disposable-email

Disposable email validator

6023.0M7](/packages/propaganistas-laravel-disposable-email)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M342](/packages/psalm-plugin-laravel)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

254168.5k](/packages/erag-laravel-disposable-email)[salamwaddah/laravel-mandrill-driver

Mandrill notification channel for Laravel 9, 10, 11, 12, 13

1177.4k](/packages/salamwaddah-laravel-mandrill-driver)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
