|
@@ -49,9 +49,11 @@ func (this *AlarmMsgController) SmsSend() {
|
|
|
}
|
|
|
|
|
|
{
|
|
|
- configItem, _ := cache.GetSmsConfigByCache("email")
|
|
|
- if configItem != nil {
|
|
|
- go services.SendAlarmMsgByEmail(req.ProjectName, req.RunMode, req.MsgBody, configItem.ConfigValue, req.Level)
|
|
|
+ if utils.RunMode == "release" {
|
|
|
+ configItem, _ := cache.GetSmsConfigByCache("email")
|
|
|
+ if configItem != nil {
|
|
|
+ go services.SendAlarmMsgByEmail(req.ProjectName, req.RunMode, req.MsgBody, configItem.ConfigValue, req.Level)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
br.Ret = 200
|