content = $content; } /** * Set the message content. * * @param string $content * @return $this */ public function content($content) { $this->content = $content; return $this; } /** * Set the phone number the message should be sent from. * * @param string $from * @return $this */ public function from($from) { $this->from = $from; return $this; } /** * Set the message type. * * @return $this */ public function unicode() { $this->type = 'unicode'; return $this; } }