JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrtemplate = $template; $this->settings = $settings; } /** * Build the message. * * @return $this */ public function build() { $from = !empty($this->settings['company_name']) ? $this->settings['company_name'] : $this->template->from; return $this->from($this->settings['mail_from_address'], $from)->markdown('email.common_email_template')->subject($this->template->subject)->with( [ 'content' => $this->template->content, 'mail_header' => $this->settings['company_name'], ] ); } }