Computer Videos Category
You are here: Home > Videos > ASP.Net > Sending Email
Video title: How to send Email using ASP.Net |
|
|
|
|
Sending Email in ASP.Net has never been easy. Now there are many ways and methods to adopt. One of the common functionalities used in Web development is sending email from a Web page. A common use of sending email from a Web page is allowing site visitors to fill in comments via an HTML form and send them to the Webmaster. The .NET Framework makes the task of sending email from a Web page relatively simple. In order to send an email from an ASP.NET Web page you need to use the SmtpMail class found in the System.Web.Mail namespace, which contains a static method Send. Sending Email The namespace that needs to be imported to send an email is the System.Web.Mail namespace. We use the SmtpMail and MailMessage classes of this namespace for this purpose. The MailMessage class provides properties and methods for constructing an email message |
|
.png)

