public ActionResult SubscriptionTest() { var mailController = new MailController(); var email = mailController.Subscription("Привет, мир!", CurrentUser.Email); email.Deliver(); return(Content("OK")); }
public ActionResult SubscriptionShow() { var mailController = new MailController(); var email = mailController.Subscription("Привет, мир!", CurrentUser.Email); using (var reader = new StreamReader(email.Mail.AlternateViews[0].ContentStream)) { var content = reader.ReadToEnd(); return(Content(content)); } }
public ActionResult SubscriptionTest() { var mailController = new MailController(); var email = mailController.Subscription("Привет, мир!", CurrentUser.Email); email.Deliver(); return Content("OK"); }
public ActionResult SubscriptionShow() { var mailController = new MailController(); var email = mailController.Subscription("Привет, мир!", CurrentUser.Email); using (var reader = new StreamReader(email.Mail.AlternateViews[0].ContentStream)) { var content = reader.ReadToEnd(); return Content(content); } return null; }