dryRun ? '[Dry Run] Bulk Check-in/Delete Report' : 'Bulk Check-in/Delete Report'; return new Envelope( from: new Address(config('mail.from.address'), config('mail.from.name')), subject: $subject, ); } public function content(): Content { return new Content( markdown: 'notifications.markdown.report-bulk-delete', with: [ 'admin' => $this->admin, 'dryRun' => $this->dryRun, 'companyNames' => $this->companyNames, 'selectedTypes' => $this->selectedTypes, 'deleteType' => $this->deleteType, 'reportLines' => $this->reportLines, 'runAt' => $this->runAt, ], ); } public function attachments(): array { return []; } }