Relative Content

Tag Archive for c#asp.netasp.net-mvcasp.net-core.net-8.0

Why doesn’t WebMail class work in my project? (.Net 8)

[HttpPost] public IActionResult EmailSender(){ WebMail.SmtpServer = “smtp.gmail.com”; WebMail.EnableSsl = true; WebMail.UserName = “[email protected]”; WebMail.Password = “password”; WebMail.SmtpPort = 587; WebMail.Send(“[email protected]”, subject, [email protected] + “<br>”, message); return View(); } This is my work on an ASP.Net Core MVC project. I am trying to send an email from one email to another but there’s some error that […]