Adgek / mailchimp by Adge
forked from nztim/mailchimp

Mailchimp API wrapper, includes Laravel 5 support.
28
0
1
Package Data
Maintainer Username: Adge
Maintainer Contact: tim@nztim.com (Tim)
Package Create Date: 2016-11-10
Package Last Update: 2016-11-10
Language: PHP
License: MIT
Last Refreshed: 2025-02-08 15:03:52
Package Statistics
Total Downloads: 28
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Mailchimp

A wrapper and Laravel integration for Drew McLellan's Mailchimp v3

Installation

  • composer require nztim/mailchimp
  • For Laravel 5 support:
    • Add the service provider to config/app.php: NZTim\Mailchimp\MailchimpServiceProvider::class,
    • Register the facade: 'Mailchimp' => NZTim\Mailchimp\MailchimpFacade::class,
    • Add .env value for MC_KEY (API key)

Usage

  • For Laravel 5, the Mailchimp facade or container instantiation is available, this requires the .env value for the API key
  • Mailchimp::check($listId, $emailAddress) checks to see if an email address is subscribed to a list, returns boolean
  • Mailchimp::subscribe($listId, $emailAddress, $mergeFields = [], $confirm = false) - adds a new subscriber to the list.
    • $mergeFields - optional array of merge fields
    • $confirm - optional boolean, true = send confirmation email, false = immediately subscribe (permission already obtained)
  • Errors
    • All methods return false for errors
    • Check Mailchimp::error() after a request to see if there was a problem.
    • Typical errors include networking/communications, incorrect API key, list doesn't exist
  • Gotchas: the API throws an error when you
    • Specify a merge field name with incorrect capitalisation
    • Omit a required merge field when adding a new member