测试五环邮箱发送

This commit is contained in:
夏菊 2025-04-02 14:48:38 +08:00
parent 0bb74aff86
commit a5609f064a
2 changed files with 17 additions and 4 deletions

View File

@ -184,7 +184,6 @@ namespace BLL
<tbody>" + tbodyStr.ToString() + "</tbody></table></body></html>";
mail.Body = bodyStr;
bool send = PushEmail(mail);
}
}
@ -196,6 +195,7 @@ namespace BLL
}
catch (Exception ex)
{
ErrLogInfo.WriteLog("关键事项邮件预警", ex);
}
}
@ -226,6 +226,7 @@ namespace BLL
}
catch (Exception ex)
{
ErrLogInfo.WriteLog("关键事项发送邮件预警", ex);
return false;
//Console.WriteLine("Email sending failed: " + ex.Message);
}

12
SGGL/Model/NPOIImg.cs Normal file
View File

@ -0,0 +1,12 @@

namespace Model
{
public class NPOIImg
{
public string SavePath { get; set; }
public int Row { get; set; }
public int Col { get; set; }
}
}