fix logic and tests, update docker CI file

This commit is contained in:
root
2026-03-09 15:58:44 -04:00
parent 1cb3573d4b
commit 79e44fe037
188 changed files with 1776 additions and 524 deletions
@@ -0,0 +1,25 @@
<?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);
}
}