Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 15s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 15s
Laravel Pint / pint (pull_request) Successful in 2m44s
Laravel Larastan / larastan (pull_request) Failing after 4m51s
67 lines
1.5 KiB
PHP
67 lines
1.5 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 VisitorOutMail extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $entry;
|
|
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*/
|
|
public function __construct($entry)
|
|
{
|
|
$this->entry = $entry;
|
|
}
|
|
|
|
/**
|
|
* Get the message envelope.
|
|
*/
|
|
public function envelope(): Envelope
|
|
{
|
|
return new Envelope(
|
|
// subject: 'Visitor Out Notification',
|
|
subject: $this->entry->type === 'InterUnitStaff'
|
|
? 'Employee Out Notification'
|
|
: 'Visitor Out Notification',
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the message content definition.
|
|
*/
|
|
public function content(): Content
|
|
{
|
|
$greeting = '<b>Dear Sir</b>';
|
|
|
|
return new Content(
|
|
view: 'mail.visitor-out',
|
|
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 [];
|
|
}
|
|
}
|