using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Net.Mail; public partial class Tom : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void Button1_Click(object sender, EventArgs e) { MailMessage msg = new MailMessage(); msg.From = "tomusn83@gmail.com"; msg.To = "tomusn83@cox.net"; msg.Subject = "msg subject"; msg.Body = "This is the body of the msg"; SmtpClient client = new SmtpClient; client.Send(msg); } }