Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 17s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 14s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 22s
Laravel Pint / pint (pull_request) Successful in 3m2s
Laravel Larastan / larastan (pull_request) Failing after 7m7s
68 lines
1.6 KiB
PHP
68 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Mail\Mailables\Content;
|
|
use Illuminate\Mail\Mailables\Envelope;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class LaserStopReportMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $records;
|
|
public $plantId;
|
|
public $machineId;
|
|
public $plantName;
|
|
|
|
public $machineName;
|
|
|
|
|
|
public function __construct($records,$plantId,$machineId, $plantName, $machineName)
|
|
{
|
|
$this->records = $records;
|
|
$this->plantId = $plantId;
|
|
$this->machineId = $machineId;
|
|
$this->plantName = $plantName;
|
|
$this->machineName = $machineName;
|
|
}
|
|
/**
|
|
* Get the message envelope.
|
|
*/
|
|
public function envelope(): Envelope
|
|
{
|
|
return new Envelope(
|
|
subject: 'Laser Stopped Alert',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the message content definition.
|
|
*/
|
|
public function content(): Content
|
|
{
|
|
$greeting = '<b>Dear Sir</b>';
|
|
return new Content(
|
|
view: 'mail.laser-stop-report',
|
|
with: [
|
|
'company' => 'CRI Digital Manufacturing Solutions',
|
|
'greeting' => $greeting,
|
|
'wishes' => 'Thanks & Regards,<br>CRI Digital Manufacturing Solutions',
|
|
],
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the attachments for the message.
|
|
*
|
|
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
|
|
*/
|
|
public function attachments(): array
|
|
{
|
|
return [];
|
|
}
|
|
}
|