changed mail subject for quality validation
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

This commit is contained in:
dhanabalan
2025-12-09 08:40:48 +05:30
parent db6af9863f
commit 84799678eb

View File

@@ -46,20 +46,20 @@ class InvalidQualityMail extends Mailable
// dynamic subject based on mail type // dynamic subject based on mail type
switch ($this->mailType) { switch ($this->mailType) {
case 'InvalidPartNumber2': case 'InvalidPartNumber2':
$this->subjectLine = "Invalid Part Number 2 Scanned ({$this->mplantName})"; $this->subjectLine = "Quality Part Validation ({$this->mplantName})";
break; break;
case 'InvalidPartNumber3': case 'InvalidPartNumber3':
$this->subjectLine = "Invalid Part Number 3 Scanned ({$this->mplantName})"; $this->subjectLine = "Quality Part Validation ({$this->mplantName})";
break; break;
case 'InvalidPartNumber4': case 'InvalidPartNumber4':
$this->subjectLine = "Invalid Part Number 4 Scanned ({$this->mplantName})"; $this->subjectLine = "Quality Part Validation ({$this->mplantName})";
break; break;
case 'InvalidPartNumber5': case 'InvalidPartNumber5':
$this->subjectLine = "Invalid Part Number 5 Scanned ({$this->mplantName})"; $this->subjectLine = "Quality Part Validation ({$this->mplantName})";
break; break;
case 'InvalidPartNumber': case 'InvalidPartNumber':
default: default:
$this->subjectLine = "Invalid Part Number 1 Scanned ({$this->mplantName})"; $this->subjectLine = "Quality Part Validation ({$this->mplantName})";
break; break;
} }