修改邮件部分

This commit is contained in:
yinjianm
2026-02-22 03:22:14 +08:00
parent 7a3e245887
commit 17a7c63aec
8 changed files with 206 additions and 71 deletions
@@ -45,11 +45,11 @@ class ConfigController extends Controller
{
$mailLog = MailService::sendEmail([
'email' => $request->user()->email,
'subject' => 'This is xboard test email',
'subject' => 'Mail connectivity test',
'template_name' => 'notify',
'template_value' => [
'name' => admin_setting('app_name', 'XBoard'),
'content' => 'This is xboard test email',
'name' => admin_setting('app_name', 'Notification Service'),
'content' => 'This is a mail connectivity test',
'url' => admin_setting('app_url')
]
]);