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

43 lines
1.3 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
{
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-19 13:09:24 +01:00
var model = new Models.MailModel(mail);
2018-12-18 15:42:39 +01:00
return View(model);
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)
{
ViewData.Add("errMsg", errMsg);
return View();
}
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" });
}
}
}