report = $report; } /** * Build the message. * * @return $this */ public function build() { return $this ->subject('Monitolite Alert Report') ->from(env('MAIL_FROM_ADDRESS', 'noreply@monitolite.fr'), env('MAIL_FROM_NAME', 'Monitolite')) ->markdown('emails.notification') ->with([ 'report' => $this->report, 'url' => env('APP_URL') ]) ; } }