This commit is contained in:
jackchenyang
2024-05-16 15:50:44 +08:00
parent d5f90004f5
commit 904833ad7e
13 changed files with 97 additions and 59 deletions
@@ -238,7 +238,7 @@ namespace FineUIPro.Web.Email_Send
}
else
{
ShowNotify("Cannot Be Created Repeatedly!", MessageBoxIcon.Error);
ShowNotify("不能重复创建!", MessageBoxIcon.Error);
return;
}
@@ -266,8 +266,8 @@ namespace FineUIPro.Web.Email_Send
tep.EmtempID = emailId;
tep.EmuserID = item.UserId.ToString();
tep.EMPeopleType = BLL.Const.SenderType;
tep.EmuserName = item.UserName.ToString();
tep.EmuaerEmailAddress = item.Email.ToString();
tep.EmuserName = item.UserName;
tep.EmuaerEmailAddress = item.Email;
tplist.Add(tep);
}
}
@@ -280,10 +280,10 @@ namespace FineUIPro.Web.Email_Send
Model.Email_ToPeople tep = new Model.Email_ToPeople();
tep.EmID = Guid.NewGuid().ToString();
tep.EmtempID = temp.EmailId;
tep.EmuserID = item.UserId.ToString();
tep.EmuserName = item.UserName.ToString();
tep.EmuserID = item.UserId;
tep.EmuserName = item.UserName;
tep.EMPeopleType = BLL.Const.CCType;
tep.EmuaerEmailAddress = item.Email.ToString();
tep.EmuaerEmailAddress = item.Email;
tplist.Add(tep);
}
}
@@ -381,7 +381,7 @@ namespace FineUIPro.Web.Email_Send
}
else
{
ShowNotify("Cannot Be Created Repeatedly!", MessageBoxIcon.Error);
ShowNotify("不能重复创建", MessageBoxIcon.Error);
return;
}
}
@@ -482,7 +482,7 @@ namespace FineUIPro.Web.Email_Send
//BLL.Sys_LogService.AddLog(this.CurrUser.UserId, "Update SendEmailTemplate!");
}
}
ShowNotify("Save Successfully!", MessageBoxIcon.Success);
ShowNotify("保存成功!", MessageBoxIcon.Success);
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
}
}