WebMail
2020-12-13 15:59
标签:style class blog code color com WebMail,搜素材,soscw.com WebMail 标签:style class blog code color com 原文地址:http://www.cnblogs.com/dotnetmvc/p/3797000.htmltry {
WebMail.SmtpServer = "smtp.example.com";
WebMail.SmtpPort = 587;
WebMail.EnableSsl = true;
WebMail.UserName = "mySmtpUsername";
WebMail.Password = "mySmtpPassword";
WebMail.From = "rsvps@example.com";
WebMail.Send("party-host@example.com", "RSVP Notification",
Model.Name + " is " + ((Model.WillAttend ?? false) ? "" :
"not")
+ "attending");
} catch (Exception) {
@:Sorry - we couldn‘t send the email to confirm your RSVP.
}