public void sendMail()
{
MailMessage mail = new MailMessage();
mail.From = new MailAddress(txtmail.Text);
mail.To.Add("destinatario@dominio.com");
mail.Subject = txtasunto.Text;
mail.Body = txtbody.Text;
mail.IsBodyHtml = false;
SmtpClient smtpServer = new SmtpClient("tu servidor smpt");
try
{
smtpServer.Send(mail);
lblerror.Text = "Mesanje enviado satisfactoriamente!!!";
}
catch (Exception e)
{
lblerror.Text = "ERROR: " + e.Message;
}
}