subject = $subject; $this->html = $html; $this->text = $text; return $this; } /** * @inheritDoc */ protected function getSubject() { return $this->subject; } /** * @inheritDoc */ protected function getHtmlMessage() { return $this->html; } /** * @inheritDoc */ protected function getPlaintextMessage() { return $this->text; } }