Skip to content

Instantly share code, notes, and snippets.

@nishad
Last active August 29, 2015 14:08
Show Gist options
  • Save nishad/de5caa1b3c67ec9b8223 to your computer and use it in GitHub Desktop.
Save nishad/de5caa1b3c67ec9b8223 to your computer and use it in GitHub Desktop.
// Send Email
require_once 'Mandrill.php';
$mandrill = new Mandrill($apikey);
$message = new stdClass();
$message->html = "html message";
$message->text = "text body";
$message->subject = "email subject";
$message->from_email = "address@test.com";
$message->from_name = "From Name";
$message->to = array(array("email" => "recipient@test.com"));
$message->track_opens = true;
$response = $mandrill->messages->send($message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment