user = $user; } /** * Get the notification's delivery channels. * * @param mixed $notifiable * @return array */ public function via() { return ['mail']; } /** * Get the mail representation of the notification. * * @return \Illuminate\Notifications\Messages\MailMessage */ public function toMail() { $message = (new MailMessage)->markdown('notifications.markdown.user-inventory', [ 'assets' => $this->user->assets, 'accessories' => $this->user->accessories, 'licenses' => $this->user->licenses, 'consumables' => $this->user->consumables, ]) ->subject(trans('mail.inventory_report')) ->withSymfonyMessage(function (Email $message) { $message->getHeaders()->addTextHeader( 'X-System-Sender', 'Snipe-IT' ); }); return $message; } }