Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 13s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 12s
Gemini PR Review / review (pull_request) Failing after 36s
Laravel Pint / pint (pull_request) Successful in 1m50s
Laravel Larastan / larastan (pull_request) Failing after 2m57s
153 lines
5.4 KiB
PHP
153 lines
5.4 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 InvalidQualityMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*/
|
|
public $serial;
|
|
public $invoiceNumber;
|
|
public $mplantName;
|
|
public $mProdOrder;
|
|
|
|
public $mUserName;
|
|
|
|
public $mPartNo;
|
|
public $mailType;
|
|
public $greeting;
|
|
public $subjectLine;
|
|
|
|
public $mLinePart;
|
|
|
|
public $itemCode;
|
|
public function __construct($parNo, $mProdOrder, $mplantName, $mLinePart, $mUserName, $mailType = 'InvalidPartNumber')
|
|
{
|
|
$this->mPartNo = $parNo;
|
|
$this->mProdOrder = $mProdOrder;
|
|
$this->mplantName = $mplantName;
|
|
$this->mLinePart = $mLinePart;
|
|
$this->mUserName = $mUserName;
|
|
$this->mailType = $mailType;
|
|
}
|
|
|
|
public function envelope(): Envelope
|
|
{
|
|
// dynamic subject based on mail type
|
|
switch ($this->mailType) {
|
|
case 'InvalidPartNumber2':
|
|
$this->subjectLine = "Quality Part Validation ({$this->mplantName})";
|
|
break;
|
|
case 'InvalidPartNumber3':
|
|
$this->subjectLine = "Quality Part Validation ({$this->mplantName})";
|
|
break;
|
|
case 'InvalidPartNumber4':
|
|
$this->subjectLine = "Quality Part Validation ({$this->mplantName})";
|
|
break;
|
|
case 'InvalidPartNumber5':
|
|
$this->subjectLine = "Quality Part Validation ({$this->mplantName})";
|
|
break;
|
|
case 'InvalidPartNumber':
|
|
default:
|
|
$this->subjectLine = "Quality Part Validation ({$this->mplantName})";
|
|
break;
|
|
}
|
|
|
|
return new Envelope(
|
|
subject: $this->subjectLine,
|
|
);
|
|
}
|
|
|
|
public function content(): Content
|
|
{
|
|
// dynamic greeting/message body
|
|
switch ($this->mailType) {
|
|
case 'InvalidPartNumber2':
|
|
$this->greeting = "
|
|
Dear Sir/Madam,<br><br>
|
|
Please note that the scanned part number appears to be incorrect.<br>
|
|
<b>Plant:</b> {$this->mplantName}<br>
|
|
<b>Line Name:</b> {$this->mLinePart}<br>
|
|
<b>Production Order:</b> {$this->mProdOrder}<br>
|
|
<b>Scanned Part Number 2:</b> {$this->mPartNo}<br>
|
|
<b>Employee Code:</b> {$this->mUserName}<br>
|
|
";
|
|
break;
|
|
case 'InvalidPartNumber3':
|
|
$this->greeting = "
|
|
Dear Sir/Madam,<br><br>
|
|
Please note that the scanned part number appears to be incorrect.<br>
|
|
<b>Plant:</b> {$this->mplantName}<br>
|
|
<b>Line Name:</b> {$this->mLinePart}<br>
|
|
<b>Production Order:</b> {$this->mProdOrder}<br>
|
|
<b>Scanned Part Number 3:</b> {$this->mPartNo}<br>
|
|
<b>Employee Code:</b> {$this->mUserName}<br>
|
|
";
|
|
break;
|
|
case 'InvalidPartNumber4':
|
|
$this->greeting = "
|
|
Dear Sir/Madam,<br><br>
|
|
Please note that the scanned part number appears to be incorrect.<br>
|
|
<b>Plant:</b> {$this->mplantName}<br>
|
|
<b>Line Name:</b> {$this->mLinePart}<br>
|
|
<b>Production Order:</b> {$this->mProdOrder}<br>
|
|
<b>Scanned Part Number 4:</b> {$this->mPartNo}<br>
|
|
<b>Employee Code:</b> {$this->mUserName}<br>
|
|
";
|
|
break;
|
|
case 'InvalidPartNumber5':
|
|
$this->greeting = "
|
|
Dear Sir/Madam,<br><br>
|
|
Please note that the scanned part number appears to be incorrect.<br>
|
|
<b>Plant:</b> {$this->mplantName}<br>
|
|
<b>Line Name:</b> {$this->mLinePart}<br>
|
|
<b>Production Order:</b> {$this->mProdOrder}<br>
|
|
<b>Scanned Part Number 5:</b> {$this->mPartNo}<br>
|
|
<b>Employee Code:</b> {$this->mUserName}<br>
|
|
";
|
|
break;
|
|
case 'InvalidPartNumber':
|
|
default:
|
|
$this->greeting = "
|
|
Dear Sir/Madam,<br><br>
|
|
Please note that the scanned part number appears to be incorrect.<br>
|
|
<b>Plant:</b> {$this->mplantName}<br>
|
|
<b>Line Name:</b> {$this->mLinePart}<br>
|
|
<b>Production Order:</b> {$this->mProdOrder}<br>
|
|
<b>Scanned Part Number 1:</b> {$this->mPartNo}<br>
|
|
<b>Employee Code:</b> {$this->mUserName}<br>
|
|
";
|
|
break;
|
|
}
|
|
|
|
return new Content(
|
|
view: 'mail.invalid-serial',
|
|
with: [
|
|
'company' => "CRI Digital Manufacturing Solutions",
|
|
'greeting' => $this->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 [];
|
|
}
|
|
}
|