ManagementSystem/BACKEND/app/Mail/ReportSummaryMail.php

38 lines
725 B
PHP
Executable File

<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class ReportSummaryMail extends Mailable
{
use Queueable, SerializesModels;
public $data;
/**
* Create a new message instance.
*/
public function __construct($data)
{
$this->data = $data;
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: '[SN Check] Check report summary',
);
}
public function build(): self
{
return $this->view('email.report_summary', get_object_vars($this));
}
}