2017 © Pedro Peláez
 

library zf-mandrill

ZF2 wrapper for the Mandrill API.

image

eoko/zf-mandrill

ZF2 wrapper for the Mandrill API.

  • Wednesday, September 23, 2015
  • by iam_merlin
  • Repository
  • 5 Watchers
  • 3 Stars
  • 287 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

zf-mandrill

Build Status Coverage Status Coverage Status Eoko Public Channel, (*1)

Introduction

zf-mandrill is a simple wrapper for the Mandrill API. It permit to use the Mandrill API using a pre-configure client in a Zend Framework context., (*2)

With this module, you can :, (*3)

  • pre-configure Mandrill client
  • check your configuration using zend-diagnostic
  • send email from CLI (for testing purpose)
  • send email directly from controller
  • use email service to send email

Installation

zf-mandrill works with Composer. Make sure you have the composer.phar downloaded and you have a composer.json file at the root of your project. To install it, you can do it from CLI composer require eoko/zf-mandrill or add the following line into your composer.json file:, (*4)

"require": {
    "eoko/zf-mandrill": "dev-master"
}

Configuration

Copy/Paste in your local configuration config/mandrill.local.php.dist and rename it to mandrill.local.php. There are all the informations required for zf-mandrill configuration., (*5)

Service Available

The following services are pre-configured in the service locator :, (*6)

  • Mandrill client : eoko.mandrill.client
  • Email service : Eoko\Mandrill\Service\Email

Command

  • Check your configuration : php public/index.php diag
  • Send an email : php public/index.php mandrill send email jane@doe.com subject htmlContent_or_filename

Controller plugin

Inside a controller, we can use the email plugin : $this->email()->setSubject('hello')->setTo('jane@doe.com')->send(), (*7)

The Versions