This commit is contained in:
jackchenyang
2024-05-17 15:28:32 +08:00
parent 904833ad7e
commit e8c8ac8d23
28 changed files with 211 additions and 929 deletions
+7 -4
View File
@@ -1,6 +1,8 @@
using Model;
using BLL;
using Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Mail;
namespace FineUIPro.Web.common
{
@@ -170,12 +172,13 @@ namespace FineUIPro.Web.common
}
public static Email_Pop getEmailPop(string EmailID)
public static Email_Pop getEmailPop()
{
Email_Pop pp = new Email_Pop();
pp = BLL.Email_Send.Email_PopService.GetEmail_Pop(EmailID);
var pp = Funs.DB.Email_Pop.FirstOrDefault();
return pp;
}
}