Pack html generated by the MiniWiki in <html><body> in mails.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sun, 4 Nov 2007 15:07:08 +0000 (16:07 +0100)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sun, 4 Nov 2007 15:07:08 +0000 (16:07 +0100)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
classes/plmailer.php

index eb26208..b654dda 100644 (file)
@@ -281,7 +281,7 @@ class PlMailer extends Mail_Mime {
         if ($this->wiki) {
             $this->setTxtBody(MiniWiki::WikiToText($this->wiki, true, 0, 78));
             if ($with_html) {
-                $this->setHtmlBody(MiniWiki::WikiToHtml($this->wiki, true));
+                $this->setHtmlBody('<html><body>' . MiniWiki::WikiToHtml($this->wiki, true) . '</body></html>');
             }
         }
     }