hyphenio/mandrill-swiftmailer

A SwiftMailer transport implementation for Mandrill

Installs: 24

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 16

pkg:composer/hyphenio/mandrill-swiftmailer

1.1.0 2016-05-04 03:53 UTC

This package is not auto-updated.

Last update: 2025-10-03 23:40:14 UTC


README

Build Status

A SwiftMailer transport implementation for Mandrill

Installation

Require the package with composer

composer require accord/mandrill-swiftmailer

Usage

$dispatcher = new Swift_Events_SimpleEventDispatcher();
$transport = new MandrillTransport($dispatcher);
$transport->setApiKey('ABCDEFG12345');
$transport->setAsync(true); # Optional
$transport->send($message);