subject(__('domains/system/notifications.excel.export_email.subject')) ->line(__('domains/system/notifications.excel.export_email.intro')) ->line(__('domains/system/notifications.excel.export_email.body')) ->line(__('domains/system/notifications.excel.export_email.outro')) ->render(); return new Content( htmlString: $message, ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return [ Attachment::fromStorageDisk('local', $this->filePath)->as($this->downloadName), ]; } }