diff --git a/phpgwapi/inc/class.egw_mailer.inc.php b/phpgwapi/inc/class.egw_mailer.inc.php index 15758eb567..090ff3dce7 100644 --- a/phpgwapi/inc/class.egw_mailer.inc.php +++ b/phpgwapi/inc/class.egw_mailer.inc.php @@ -412,6 +412,7 @@ class egw_mailer extends Horde_Mime_Mail { return $str; } + protected $is_html = false; /** * Defines that setting $this->Body should set Body or AltBody @@ -423,6 +424,38 @@ class egw_mailer extends Horde_Mime_Mail $this->is_html = (bool)$html; } + /** + * Sets the message type + * + * @deprecated no longer necessary to call, happens automatic when calling send or getRaw($stream=true) + */ + public function SetMessageType() + { + + } + + /** + * Assembles message header + * + * @deprecated use getMessageHeader() or better getRaw($stream=true) + * @return string The assembled header + */ + public function CreateHeader() + { + return $this->getMessageHeader(); + } + + /** + * Assembles message body + * + * @deprecated use getMessageBody() or better getRaw($stream=true) + * @return string The assembled header + */ + public function CreateBody() + { + return $this->getMessageBody(); + } + protected $from = ''; /** * Magic method to intercept assignments to old PHPMailer variables