item = $consumable; $this->admin = $checkedOutBy; $this->note = $note; $this->target = $checkedOutTo; $this->acceptance = $acceptance; $this->qty = $consumable->checkout_qty; $this->settings = Setting::getSettings(); } /** * Get the message envelope. */ public function envelope(): Envelope { $from = new Address(env('MAIL_FROM_ADDR','service@snipe-it.io')); return new Envelope( from: $from, subject: trans('mail.Confirm_consumable_delivery'), ); } /** * Get the message content definition. */ public function content(): Content { $eula = $this->item->getEula(); $req_accept = $this->item->requireAcceptance(); $accept_url = is_null($this->acceptance) ? null : route('account.accept.item', $this->acceptance); return new Content( markdown: 'mail.markdown.checkout-consumable', with: [ 'item' => $this->item, 'admin' => $this->admin, 'note' => $this->note, 'target' => $this->target, 'eula' => $eula, 'req_accept' => $req_accept, 'accept_url' => $accept_url, 'qty' => $this->qty, ] ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }