dustinmoorman / mandrill
Simple Mandrill script.
Installs: 14
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 2
Forks: 0
Open Issues: 2
pkg:composer/dustinmoorman/mandrill
This package is not auto-updated.
Last update: 2026-02-24 08:37:36 UTC
README
Mandrill PHP client.
Easy to use
include 'Mandrill.php';
$m = new \Dustinmoorman\Mandrill\Mandrill(
'Dustin Moorman',
'from_address@example.com',
'reply_to_me@example.com',
'5555MandrillApiKey5555555ANJCuUF-qg'
);
$m->setTitle('Test Email');
$m->setHTML('<div>Sending a test email.</div>');
$m->addRecipient('mistayayha@gmail.com', 'Yishai');
$m->send();