diff --git a/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java b/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java index 53bf5e4fd9..e325f7e71b 100644 --- a/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java +++ b/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java @@ -833,6 +833,9 @@ public class TestPlanReportService { errfoMailTemplate = "TestPlanFailedNotification"; } + String testPlanShareUrl = shareInfoService.getTestPlanShareUrl(testPlanReport.getId()); + paramMap.put("planShareUrl", baseSystemConfigDTO.getUrl() + "/sharePlanReport" + testPlanShareUrl); + NoticeModel noticeModel = NoticeModel.builder() .operator(testPlanReport.getCreator()) .successContext(successContext)