I’d like my MVC-3 application to send out nicely formatted status emails. Is there a standard library that I can use to handle the dirty work?
I’d like my MVC-3 application to send out nicely formatted status emails. Is there
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, MVC does not include anything related to sending emails. But it doesn’t need to, because this functionality is built into .NET. There are many many many tutorials on how to send html emails in .NET. It’s not a lot of code to do it either.
https://web.archive.org/web/20211020150716/https://www.4guysfromrolla.com/articles/080206-1.aspx
https://web.archive.org/web/20211016215613/http://www.4guysfromrolla.com/webtech/080801-1.shtml
http://www.search-this.com/2009/02/05/aspnet-sending-email-both-in-html-and-plain-text/
etc.. etc.. etc…
There are various third party libraries that improve things, such as MvcMailer, FluentEmail, etc.. Just search for email in NuGet and see the list.