Ver Mensaje Individual
  #5 (permalink)  
Antiguo 06/05/2011, 01:11
curl_yo
 
Fecha de Ingreso: enero-2011
Mensajes: 12
Antigüedad: 13 años, 10 meses
Puntos: 0
Respuesta: Duda uso de Thread

Si claro, este es el codigo... Gracias!


[WebMethod(EnableSession = true)]
public string enviaCorreo(string asunto, string mensaje, string destinatarios, string usuario, string adj)
{
string mensajeError = "";
try
{

DataSet midt = new DataSet();
System.Net.Mail.MailMessage correo = new System.Net.Mail.MailMessage();


correo.From = new System.Net.Mail.MailAddress(usuario);

correo.Bcc.Add(destinatarios);

correo.Subject = asunto;
correo.Body = mensaje;
correo.IsBodyHtml = true;
correo.Priority = System.Net.Mail.MailPriority.High;
System.Net.Mail.SmtpClient smtp = new System.Net.Mail.SmtpClient();
smtp.Timeout = 1000;
smtp.Host = "exchange.dominio.es";


if (adj != "")
{
Attachment adjunto = new Attachment(adj);
correo.Attachments.Add(adjunto);
}


smtp.EnableSsl = false;
smtp.Credentials = new System.Net.NetworkCredential("Admin", "Password*");


smtp.SendAsync(correo, correo);



return mensajeError;
}

catch (Exception ex)
{

return mensajeError = ex.ToString();

}

}