43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using System.Net.Mail;
|
|
using System.Net;
|
|
using System.Web.Mvc;
|
|
using System.Web.ModelBinding;
|
|
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace MailSender.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
[HttpPost]
|
|
public ActionResult Index([System.Web.Http.FromBody]MailDTO.MailDTO mail)
|
|
{
|
|
var model = new Models.MailModel(mail);
|
|
return View(model);
|
|
}
|
|
|
|
[System.Web.Http.HttpGet]
|
|
public ActionResult Error(string errMsg)
|
|
{
|
|
ViewData.Add("errMsg", errMsg);
|
|
return View();
|
|
}
|
|
|
|
[System.Web.Mvc.HttpPost]
|
|
public ActionResult Send(MailSender.Models.MailModel model)
|
|
{
|
|
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" });
|
|
}
|
|
}
|
|
} |