email

How To Send Email in ASP.NET

In this tutorial you should create a form to allow users to enter e-mail information. When the user submits the form to the server, your application will build a MailMessage object from the email information and then send the email using the SmtpClient class. The namespace System.Net.Mail contains classes which take care of constructing an SMTP-based message. …

Learn more