Skip to content

Commit 33f2ec1

Browse files
author
Daniel Wolkenhauer
committed
Fatal error: Call to undefined method PHPCI\Helper\Email::setIsHtml() in ../Email.php on line 107
1 parent 7c4a926 commit 33f2ec1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PHPCI/Plugin/Email.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function sendEmail($toAddress, $ccList, $subject, $body)
104104
$email->setEmailTo($toAddress, $toAddress);
105105
$email->setSubject($subject);
106106
$email->setBody($body);
107-
$email->setIsHtml(true);
107+
$email->setHtml(true);
108108

109109
if (is_array($ccList) && count($ccList)) {
110110
foreach ($ccList as $address) {

0 commit comments

Comments
 (0)