Forum-Inzynieria1/Trunk/Server/Forum/MailSender/Controllers/HomeController.cs

55 lines
1.6 KiB
C#
Raw Normal View History

2018-12-18 15:42:39 +01:00
using System.Net.Mail;
2018-12-08 19:27:21 +01:00
using System.Net;
using System.Web.Mvc;
2018-12-18 15:42:39 +01:00
using System.Web.ModelBinding;
using System;
using Newtonsoft.Json;
2018-12-08 19:27:21 +01:00
namespace MailSender.Controllers
{
2018-12-20 01:22:51 +01:00
[RoutePrefix("")]
2018-12-08 19:27:21 +01:00
public class HomeController : Controller
2018-12-18 15:42:39 +01:00
{
2018-12-19 12:32:14 +01:00
[HttpPost]
2018-12-19 12:55:35 +01:00
public ActionResult Index([System.Web.Http.FromBody]MailDTO.MailDTO mail)
2018-12-08 19:27:21 +01:00
{
2018-12-20 01:22:51 +01:00
var model = new Models.MailModel(mail);
TempData.Add("mailMod", model);
return View(model);
}
[HttpGet]
public ActionResult Index()
{
if(TempData["mailMod"] != null)
{
return View(TempData["mailMod"]);
}
return View(new Models.MailModel());
2018-12-08 19:27:21 +01:00
}
2018-12-19 12:55:35 +01:00
[System.Web.Http.HttpGet]
2018-12-08 19:27:21 +01:00
public ActionResult Error(string errMsg)
{
2018-12-20 01:22:51 +01:00
TempData.Add("errMsg", errMsg);
return RedirectToAction("Index");
2018-12-08 19:27:21 +01:00
}
2018-12-19 12:55:35 +01:00
[System.Web.Mvc.HttpPost]
2018-12-18 15:42:39 +01:00
public ActionResult Send(MailSender.Models.MailModel model)
2018-12-08 19:27:21 +01:00
{
if (ModelState.IsValid)
{
var smtpClient = new SmtpClient(Settings.smtpServer, Settings.smtpPort)
{
Credentials = new NetworkCredential(Settings.user, Settings.pass),
EnableSsl = true
};
smtpClient.Send(Settings.user, model.EMailTo, model.Subject, model.Content);
return RedirectToAction("Index");
}
else
return RedirectToAction("Error", new { errMsg = "Error nie umiesz pisac maila menelu" });
}
}
}