首页 > 代码库 > WebMail

WebMail

try {      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) {     @:<b>Sorry - we couldnt send the email to confirm your RSVP.     </b>}