Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. @{
  2. try
  3. {
  4. WebMail.SmtpServer = "smtp.gmail.com";
  5. WebMail.SmtpPort = 587;
  6. WebMail.EnableSsl = true;
  7. WebMail.UserName = "Danil Kuzichkin";
  8. WebMail.Password = "Esthete2711";
  9. WebMail.From = "agencyesthete@gmail.com";
  10.  
  11. WebMail.Send(ViewBag.Address, "Оповещение о покупке книги.", String.Format("Дорогой покупатель [0]," +
  12. "спасибо за покупку книги в нашем магазине. \nВы приобрели [1].", ViewBag.Address,
  13. ViewBag.BookName));
  14. }
  15. catch (Exception)
  16. {
  17. @:<b>Soory - we couldn't send the email to confirm your RSVP.</b>
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement