html = $msg->getHTML(); } /** * @return string * Zwraca wiadomość HTML */ function __toString() { return $this->html; } /** * @return string * Zwraca wiadomość w formacie HTML */ function getHTML() { return $this->html; } function sendPullResponse() { header('Content-Type: text/html; charset=utf-8'); echo $this; } } ?>