scheduleType = $scheduleType; $this->tableData = $tableData ?? []; $this->mailSubject = $mailSubject ?? 'Import Transit'; } /** * Get the message envelope. */ public function envelope(): Envelope { return new Envelope( subject: 'Import Transit Mail', ); } /** * Get the message content definition. */ public function content(): Content { $greeting = 'Dear Sir'; //$greeting1 = 'Dear C.R.I Branch Team,

Please follow and ensure the same'; if ($this->scheduleType == 'daily') { $reportPeriod = "The following report presents results"; $greeting .= $reportPeriod; } if ($this->scheduleType == 'Hourly') { $now = now(); $fromHour = $now->copy()->subHour()->format('H:i:s'); $toHour = $now->format('H:i:s'); $reportDate = $now->format('d/m/Y'); $greeting .= "from: $reportDate, $fromHour to $toHour.

Please arrange to receipt the same immediately."; } if ($this->scheduleType == 'Live') { $now = now(); $fromMinute = $now->copy()->subMinute()->format('d/m/Y H:i:s'); $toMinute = $now->format('d/m/Y H:i:s'); $greeting .= "from: $fromMinute to $toMinute.

Please arrange to receipt the same immediately."; } return new Content( view: 'mail.import_transit_report', with: [ 'company' => 'CRI Digital Manufacturing Solutions', 'greeting' => $greeting, 'tableData' => $this->tableData, 'wishes' => 'Thanks & Regards,
CRI Digital Manufacturing Solutions', ], ); } /** * Get the attachments for the message. * * @return array */ public function attachments(): array { return []; } }