setSubject($subject); } } /** * Set the subject on a Subject object * * @param string $subject The email subject * * @throws TypeException */ public function setSubject($subject) { Assert::minLength($subject, 'subject', 1); $this->subject = $subject; } /** * Retrieve the subject from a Subject object * * @return string */ public function getSubject() { return mb_convert_encoding($this->subject, 'UTF-8', 'UTF-8'); } /** * Return an array representing a Subject object for the Twilio SendGrid API * * @return string */ public function jsonSerialize() { return $this->getSubject(); } }