first commit

This commit is contained in:
Eric Li
2025-06-13 12:09:50 +08:00
commit b12cd07419
545 changed files with 39389 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Mail;
use App\Mail\EventNotifyMail;
class MailController extends Controller
{
public function index()
{
Mail::to('ericli1018@gmail.com')->send(new EventNotifyMail([
"title" => "Test Notify",
"body" => "The Body\n1\n2\n",
]));
}
}