dbfdg template = $template; $this->settings = $settings; } /** * Build the message. * * @return $this */ public function build() { return $this->from($this->settings['mail_from_address'], $this->template->from)->markdown('email.common_email_template')->subject($this->template->subject)->with('content', $this->template->content); } }