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

dev-master 2016-04-16 23:31 UTC

This package is not auto-updated.

Last update: 2025-10-07 06:56:31 UTC


README

License

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();