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
Requires
- php: >=5.4
- hyphenio/mandrill: ~1.0
- swiftmailer/swiftmailer: ~5.3
Requires (Dev)
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2025-10-03 23:40:14 UTC
README
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);