25 lines
481 B
PHP
25 lines
481 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class TeacherSubmissionReminderMail extends Mailable
|
|
{
|
|
use Queueable;
|
|
use SerializesModels;
|
|
|
|
public function __construct(
|
|
protected string $subjectLine,
|
|
protected string $htmlBody
|
|
) {}
|
|
|
|
public function build(): self
|
|
{
|
|
return $this->subject($this->subjectLine)
|
|
->html($this->htmlBody);
|
|
}
|
|
}
|