message = $message; $this->from_email = $from_email; } /** * Test Server mail. * * @return $this */ public function build() { return $this->from($this->from_email) //todo this needs to be fixed to handle the hosted version ->subject(ctrans('texts.email')) ->markdown('email.support.message', [ 'message' => $this->message, 'system_info' => '', 'laravel_log' => [], ]); } }