diff --git a/README.mdown b/README.mdown index 4af0075d..47a4fcf1 100644 --- a/README.mdown +++ b/README.mdown @@ -122,6 +122,7 @@ Handlers - _HipChatHandler_: Logs records to a [HipChat](http://hipchat.com) chat room using its API. - _FlowdockHandler_: Logs records to a [Flowdock](https://www.flowdock.com/) account. - _SlackHandler_: Logs records to a [Slack](https://www.slack.com/) account. +- _MandrillHandler_: Sends emails via the Mandrill API using a [`Swift_Message`](http://swiftmailer.org/) instance. ### Log specific servers and networked logging diff --git a/src/Monolog/Handler/MandrillHandler.php b/src/Monolog/Handler/MandrillHandler.php index 0406e022..27340685 100644 --- a/src/Monolog/Handler/MandrillHandler.php +++ b/src/Monolog/Handler/MandrillHandler.php @@ -62,6 +62,6 @@ class MandrillHandler extends MailHandler ))); curl_exec($ch); - curl_close ($ch); + curl_close($ch); } -} \ No newline at end of file +}