template = $template; $this->user_id = $user_id; } /** * Build the message. * * @return $this */ public function build() { return $this->from(company_setting('email_fromAddress',$this->user_id), $this->template->from) ->markdown('emails.common_email_template') ->subject($this->template->subject) ->with('content', $this->template->content); } }