https://github.com/jsdecena/mailchimp
Laravel 5 package for mailchimp
https://github.com/jsdecena/mailchimp
laravel mailchimp middleware php test-driven-development
Last synced: 5 months ago
JSON representation
Laravel 5 package for mailchimp
- Host: GitHub
- URL: https://github.com/jsdecena/mailchimp
- Owner: jsdecena
- Created: 2016-06-07T05:46:57.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-02-16T08:09:31.000Z (over 5 years ago)
- Last Synced: 2025-10-12T13:28:28.983Z (10 months ago)
- Topics: laravel, mailchimp, middleware, php, test-driven-development
- Language: PHP
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
[](https://travis-ci.org/jsdecena/mailchimp)
[](https://packagist.org/packages/jsdecena/mailchimp)
[](https://packagist.org/packages/jsdecena/mailchimp)
[](https://packagist.org/packages/jsdecena/mailchimp)
## MailChimp API v2.0 Laravel PHP Example
## Installation
- Step1: Add this to your root `composer.json`
```json
"require": {
"jsdecena/mailchimp": "^7.0"
}
```
Or issue this command:
`composer require jsdecena/mailchimp`
- Step2: Add this to your `config/app.php` in `providers` array
```json
'providers' => [
Jsdecena\MailChimp\MailChimpServiceProvider::class,
]
```
- Step3: Run this in your terminal
`php artisan vendor:publish --provider="Jsdecena\MailChimp\MailChimpServiceProvider"`
- Step4: Include the template anywhere in your template `@include('mailchimp::mailchimp')`
- Step5: Set the variable in your `.env` file
`MAILCHIMP_API_KEY=YourMailChimpAPIKey`
`MAILCHIMP_LIST_ID=YourMailChimpListId`
- Step6: Enjoy!
## Overriding the template file?
- Yes you can. Override the file in `/resources/views/vendor/mailchimp/mailchimp.blade.php`
## What is new with 1.6?
- Recently, I learned the power of doing TDD (test driven development) on applications using PHPUnit. So now, I am already throwing exception messages whenever there is an issue on the request!
## What are the exception messages we are returning?
- Email that MailChimp does not allow
```json
{
"error": "List_RoleEmailMember: test@test.com is an invalid email address and cannot be imported."
}
```
- Wrong API key provided
```json
{
"error":"Invalid MailChimp API key: 1112e36f7f44ef4cc3c5a584747abb05be"
}
```
- Wrong List ID provided
```json
{
"error":"Invalid MailChimp List ID: accf6b0a0e111"
}
```
## And if the subscription is successful, it will return the email, euid, leid on the data object
```json
{
"data": {
"email":"super@mario.com",
"euid":"b0b8fdacbd",
"leid":"430369209"
}
}
```