From 038de8bcf19e5091f5fe8e17ede98146f73929e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 5 Jul 2024 10:06:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=82=AE=E4=BB=B6=E6=8F=90?= =?UTF-8?q?=E9=86=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gxwebsoft/common/system/service/impl/TenantServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/gxwebsoft/common/system/service/impl/TenantServiceImpl.java b/src/main/java/com/gxwebsoft/common/system/service/impl/TenantServiceImpl.java index 6c5de82..e15fd29 100644 --- a/src/main/java/com/gxwebsoft/common/system/service/impl/TenantServiceImpl.java +++ b/src/main/java/com/gxwebsoft/common/system/service/impl/TenantServiceImpl.java @@ -591,7 +591,7 @@ public class TenantServiceImpl extends ServiceImpl impleme // 发送邮件通知 String title = "恭喜!您的账号已注册成功"; String content = "租户ID:".concat(company.getTid().toString()).concat("\r\n名称:" + company.getShortName()).concat("\r\n账号:" + company.getPhone()).concat("\r\n密码:" + company.getPassword()); - String adminUrl = "\r\n后台管理:".concat("http://").concat(company.getTid().toString()).concat(".admin.websoft.top"); + String adminUrl = "\r\n后台管理:".concat("http://").concat(company.getTid().toString()).concat(".websoft.top"); // 发送邮件通知 emailRecordService.sendEmail(title, content.concat(adminUrl), company.getEmail()); return true;