wpeereboom/php-mandrill

Php library to parse webhooks from Mandrill

Installs: 350

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/wpeereboom/php-mandrill

dev-master 2015-12-03 10:11 UTC

This package is not auto-updated.

Last update: 2025-10-15 22:02:44 UTC


README

Introduction

This library can handle the webhooks send by Mandrill

Features

This library’s features include the following.

  • Parse send events

Installation

The recommended way to install this library is through Composer:

$ php composer.phar require wpeereboom/php-mandrill dev-master

Usage

The client

Use the client to get the call data. First construct a client and call the methods to receive the data:

$parser = new Parser($rawEventMessage);

// To get the event
$event = $parser->parse();