This has probably been fixed since I installed my copy, but line 566 in mail.php, in mandrillSend(), is tossing an undefined notice, because it's counting $mAttachments, which isn't defined if there are none.
I just added a simple ...
$mAttachments = array();
... as the first line in that func.
-- hugh