aquí dejo mi código:
Código:
Muchas gracias!! private void enviarMail(){ MailMessage oMsg = new MailMessage(); oMsg.From = new MailAddress("[email protected]"); oMsg.To.Add("[email protected]"); oMsg.Subject = "Asunto del mensaje"; oMsg.Body = "Cuerpo del mensaje"; SmtpClient smtp = new SmtpClient("mail.dominio.com"); smtp.Port = 587; smtp.Credentials = new System.Net.NetworkCredential("[email protected]", "password"); smtp.Send(oMsg); }