by Robin at 20241017

This commit is contained in:
Leufolium 2024-10-17 19:52:33 +08:00
parent 2df2341e6b
commit 83a984eb17
1 changed files with 3 additions and 3 deletions

View File

@ -4276,8 +4276,8 @@ func (s *Service) ApiSendRavenIQTestResultAsEmail(ctx *gin.Context, req *emailpr
return
}
go func() {
err = email.SendRavenIQTestResult(req.Email, emailInfoCfg.Host, emailInfoCfg.Port, emailInfoCfg.Address, emailInfoCfg.Password)
go func(eml *dbstruct.Email, emailInfoCfg apollostruct.EmailInfoConfig) {
err = email.SendRavenIQTestResult(eml, emailInfoCfg.Host, emailInfoCfg.Port, emailInfoCfg.Address, emailInfoCfg.Password)
if err != nil {
logger.Error("SendRavenIQTestResult fail, req: %v, err: %v", util.ToJson(req), err)
// 更新状态为失败
@ -4296,7 +4296,7 @@ func (s *Service) ApiSendRavenIQTestResultAsEmail(ctx *gin.Context, req *emailpr
Status: goproto.Int64(consts.Email_Success),
},
})
}()
}(req.Email, emailInfoCfg)
return
}