Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/12/2005, 03:09
alfisoft
 
Fecha de Ingreso: octubre-2005
Mensajes: 27
Antigüedad: 19 años, 3 meses
Puntos: 0
Enviar e-mail desde un formulario

Me gustaria poder enviar un e-mail con todos los datos del formulario:

Hasta ahora lo he hecho con System.Web.Mail.MailMessage y me ha ido perfecto, pero al darle formato html me da problemas y no se envían todos los campos.

code:
Dim mail As New System.Web.Mail.MailMessage
With mail
.From = ConfigurationSettings.AppSettings("remitentemail")
.To = "[email protected]"
.BodyFormat = System.Web.Mail.MailFormat.Html
.Subject = "Consulta desde la web"

.Body = "<html><body><table width=698 border 0 align=center>"
.Body = .Body & "<tr valign=top>"
.Body = .Body & "<td colspan=2>INFORMACIÓN DESDE LA WEB</td>"
.Body = .Body & "</tr>"
...
...
..
.Body = "</table></body></html>
End With

System.Web.Mail.SmtpMail.SmtpServer =ConfigurationSettings.AppSettings("SMTPServer")
System.Web.Mail.SmtpMail.Send(mail)



Si envio más de 5 ó 6campos, me da problemas. Alguna solución??

GRACIAS POR TODO