If you are still here 
You can very easily send an email from ASP.NET
System.Web.Mail namespace is the first thing you need:
<%@ Import Namespace="System.Web.Mail" %>
While you send an email it requires the following points as sender, recipient, subject and body going under SmtpMail.Send().
And here is an examples:
string from = "sender@example.com";
string to = "recipient@example.com";
string subject = "Good day!";
string body = "Any news?";
SmtpMail.SmtpServer = "mail.example.com";
SmtpMail.Send(from, to, subject, body);
The SmtpMail.SmtpServer means that you are to specify the mail server that used to deliver the message.