From 33f2ec172d594da2f49da8802c02dd01a9d3c43a Mon Sep 17 00:00:00 2001 From: Daniel Wolkenhauer Date: Mon, 16 Feb 2015 18:51:05 +0100 Subject: [PATCH] Fatal error: Call to undefined method PHPCI\Helper\Email::setIsHtml() in ../Email.php on line 107 --- PHPCI/Plugin/Email.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Plugin/Email.php b/PHPCI/Plugin/Email.php index 02987e9b..9e361d91 100644 --- a/PHPCI/Plugin/Email.php +++ b/PHPCI/Plugin/Email.php @@ -104,7 +104,7 @@ class Email implements \PHPCI\Plugin $email->setEmailTo($toAddress, $toAddress); $email->setSubject($subject); $email->setBody($body); - $email->setIsHtml(true); + $email->setHtml(true); if (is_array($ccList) && count($ccList)) { foreach ($ccList as $address) {