修改邮件部分

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
+3 -3
View File
@@ -61,11 +61,11 @@ class MailLinkService
SendEmailJob::dispatch([
'email' => $user->email,
'subject' => __('Login to :name', [
'name' => admin_setting('app_name', 'XBoard')
'name' => admin_setting('app_name', 'Notification Service')
]),
'template_name' => 'login',
'template_value' => [
'name' => admin_setting('app_name', 'XBoard'),
'name' => admin_setting('app_name', 'Notification Service'),
'link' => $link,
'url' => admin_setting('app_url')
]
@@ -97,4 +97,4 @@ class MailLinkService
return $userId;
}
}
}