1、發送郵件類,百度一大堆,這裡用的也是直接百度拿過來的 public static bool get_send_email(email email, string Title, string Body) { MailMessage mailMsg = new MailMessage(); mail ...
1、發送郵件類,百度一大堆,這裡用的也是直接百度拿過來的
public static bool get_send_email(email email, string Title, string Body) {
MailMessage mailMsg = new MailMessage();
mailMsg.From = new MailAddress(email.sendmail, email.sendname);
mailMsg.To.Add(new MailAddress(email.acceptmail));
mailMsg.Subject = Title;
mailMsg.Body = Body;
SmtpClient client = new SmtpClient();
client.Host = "smtp.qq.com";
client.Port = 587;
client.EnableSsl = true;
client.Credentials = new NetworkCredential(email.sendmail, email.token);
try {
client.Send(mailMsg);
}
catch ( SmtpException ex ) {
return false;
}
return true;
}
添加引用web/h_r.sys引用service/h_r.base、service/data/h_r.efdata、common/h_r.common
不存在分層,只看做是一個demo即可。