name = $ticket->user->name; $this->email = $ticket->user->email; $this->user_message = $user_message; $this->type = $ticket->type; $this->id = $ticket->id; } /** * Build the message. * * @return $this */ public function build() { $this->view('support-ticket'); $this->subject("Ticket: $this->id, $this->type"); $this->replyTo($this->email); return $this; } }