Files
pds/app/Mail/PanelBoxNotOkAlert.php
dhanabalan 8812ae8dc9
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 12s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 14s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Laravel Pint / pint (pull_request) Successful in 35m7s
Laravel Larastan / larastan (pull_request) Failing after 49m43s
Added remark column in panel box alert mail
2026-09-11 12:26:27 +05:30

74 lines
1.7 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 PanelBoxNotOkAlert extends Mailable
{
use Queueable, SerializesModels;
public $plant;
public $itemCode;
public $serialNumber;
public $characteristics;
public $supplier;
public $remark;
/**
* Create a new message instance.
*/
public function __construct($plant,$itemCode,$remark, $serialNumber,$supplier, $characteristics)
{
$this->plant = $plant;
$this->itemCode = $itemCode;
$this->remark = $remark;
$this->serialNumber = $serialNumber;
$this->supplier = $supplier;
$this->characteristics = $characteristics;
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: 'Panel Box Not Ok Alert',
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
$greeting = '<b>Dear Sir</b>';
return new Content(
view: 'mail.panel-box-not-ok-alert',
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 [];
}
}