Download the PHP package bonsi/laravel-newsletter-getresponse without Composer
On this page you can find all versions of the php package bonsi/laravel-newsletter-getresponse. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bonsi/laravel-newsletter-getresponse
More information about bonsi/laravel-newsletter-getresponse
Files in bonsi/laravel-newsletter-getresponse
Package laravel-newsletter-getresponse
Short Description Manage newsletters in Laravel 5
License MIT
Homepage https://github.com/spatie/laravel-newsletter
Informations about the package laravel-newsletter-getresponse
Manage GetResponse newsletters in Laravel 5
Note: work in progress!
Fork of the awesome [] "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:
Installation
You can install this package via Composer using:
You must also install this service provider.
If you want to make use of the facade you must install it as well.
To publish the config file to app/config/laravel-newsletter-getresponse.php
run:
This wil publish a file laravel-newsletter-getresponse.php
in your config directory with the following contents:
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.
Subscribing and unsubscribing
Subscribing an email address can be done like this:
Let's unsubcribe someone:
You can pass some merge variables as the second argument:
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:
That third argument is the name of a list you configured in the config file.
You can also unsubscribe someone from a specific list:
Getting subscriber info
You can get information on a subscriber by using the getMember
-function:
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:
Creating a campaign
This is how you create a campaign:
Note the campaign will only be created, no mails will be sent out.
Handling errors
If something went wrong you can get the last error with
If you just want to make sure if the last action succeeded you can to this:
Need something else?
If you need more functionality you get an instance of the underlying GetResponse Api with:
Testing
Run the tests with:
Credits
- Freek Van der Herten
- All Contributors
- Bonsi
License
The MIT License (MIT). Please see License File for more information.