测试五环邮箱发送
This commit is contained in:
parent
0bb74aff86
commit
a5609f064a
|
@ -184,8 +184,7 @@ namespace BLL
|
||||||
<tbody>" + tbodyStr.ToString() + "</tbody></table></body></html>";
|
<tbody>" + tbodyStr.ToString() + "</tbody></table></body></html>";
|
||||||
|
|
||||||
mail.Body = bodyStr;
|
mail.Body = bodyStr;
|
||||||
|
bool send = PushEmail(mail);
|
||||||
bool send= PushEmail(mail);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -196,6 +195,7 @@ namespace BLL
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
ErrLogInfo.WriteLog("关键事项邮件预警", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -216,16 +216,17 @@ namespace BLL
|
||||||
client.DeliveryMethod = SmtpDeliveryMethod.Network;
|
client.DeliveryMethod = SmtpDeliveryMethod.Network;
|
||||||
client.UseDefaultCredentials = false;
|
client.UseDefaultCredentials = false;
|
||||||
client.Credentials = new NetworkCredential(pops.EmailYx, pops.EmailPass);//替换为你的邮箱和服务授权码
|
client.Credentials = new NetworkCredential(pops.EmailYx, pops.EmailPass);//替换为你的邮箱和服务授权码
|
||||||
//client.Timeout = 6000; //6秒超时
|
//client.Timeout = 6000;//6秒超时
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
client.Send(mail);
|
client.Send(mail);
|
||||||
client.Dispose(); //释放资源
|
client.Dispose();//释放资源
|
||||||
return true;
|
return true;
|
||||||
//Console.WriteLine("Email sent successfully.");
|
//Console.WriteLine("Email sent successfully.");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
|
ErrLogInfo.WriteLog("关键事项发送邮件预警", ex);
|
||||||
return false;
|
return false;
|
||||||
//Console.WriteLine("Email sending failed: " + ex.Message);
|
//Console.WriteLine("Email sending failed: " + ex.Message);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
namespace Model
|
||||||
|
{
|
||||||
|
public class NPOIImg
|
||||||
|
{
|
||||||
|
public string SavePath { get; set; }
|
||||||
|
|
||||||
|
public int Row { get; set; }
|
||||||
|
|
||||||
|
public int Col { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue