Hola que tal, este es mi codigo la verdad nose por que me esta generando este error, cuando le pongo enviar el programa solamente se pone en blanco y me sale la ventanita de vhost ha dejado de funcionar y tendra que cerrarse.
string mail = dataGridView1[1, j].Value.ToString();
System.Net.Mail.MailMessage Correo = new System.Net.Mail.MailMessage();
Correo.To.Add(new MailAddress(mail));
Correo.From = new MailAddress("Anglo Mexicano");
Correo.Subject = "¿Te gritan tus hijos?";
Correo.Body = "<html> <head> </head> <body> <img src='fabricadelexito.com./anglo-flyer-edit.jpg' width='616' height='793' /> </body> </html>";
Correo.IsBodyHtml = true;
//Correo.Attachments.Add(new Attachment(textBox1.Text));
Correo.Priority = System.Net.Mail.MailPriority.Normal;
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient();
smtp.Host = "smtp.live.com";
smtp.Port = 587;
smtp.Credentials = new System.Net.NetworkCredential("xxxxxx@hotmail.com", "xxxxxxx");
smtp.EnableSsl = true;
try
{
smtp.Send(Correo);
}
catch (Exception ex)
{
MessageBox.Show("No se pudo mandar mail a "+dataGridView1[0,j].Value.ToString()+"n"+ ex);
}
el mail lo tengo en un data grid me funciona bien sacar el nombre y todo pero solo me falla cuando me quiere mandar el mail nose que esta pasando, alguien que me pueda ayudar?