Advertisement
Guest User

Untitled

a guest
Jun 29th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. try
  2. {
  3. WebMail.SmtpServer = "smtp-mail.outlook.com";
  4. WebMail.SmtpPort = 25;
  5. WebMail.EnableSsl = true;
  6. WebMail.UserName = "meuemail";
  7. WebMail.Password = "minhasenha";
  8. WebMail.From = "blabla@site.com";
  9.  
  10. WebMail.Send("participantes@examples.com", "Notificação",
  11. Model.Nome + " é " + ((Model.VaiParticipar ?? false) ? "" : "Não") + "Sim");
  12. }
  13. catch (Exception)
  14. {
  15. @:<b>Desculpe, Email não enviado</b>
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement