library mandrill
Simple Mandrill script.
dustinmoorman/mandrill
Simple Mandrill script.
- Sunday, April 17, 2016
- by dustinmoorman
- Repository
- 2 Watchers
- 8 Stars
- 8 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 2 Open issues
- 1 Versions
- 0 % Grown
mandrill
, (*1)
Mandrill PHP client., (*2)
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('
Sending a test email.
');
$m->addRecipient('mistayayha@gmail.com', 'Yishai');
$m->send();