Este es el codigo que tengo:
text = "<center><font size=3><b>Netservices C. R. Online Support Platform</b></font></center><br><br>"
text = text + "La siguiente información fue enviada desde Online Support Platform en el servicio: <br><b>" & titulo
text = text + "<br><br>" & Nombre & " " & apellidos & "</b><br>"
text = text + "<b>Compañía:</b> " &session("Nombrelargo")
text = text + "<br>" & email & "<br>"
text = text + "<b>Usuario:</b> " & session("Login")
text = text + "<b><br>Ip:</b> " & Session("IP")
text = text + "<b><br>El Producto al que se dara el soporte es: </b>" & producto & "<br><br>"
text = text + "<b>El nivel de experiencia del solicitantes es: </b>" & experiencia &"<br><br>"
text = text + "<b>El comentario dado es: </b><br>" & comentarios & "<br><hr>"
text = text + "*****************<br>"
text = text + "Mensaje informativo de procesamiento de datos<br>"
text = text + "<a href=Http://www.netservicescr.com><b>Netservices C. R.</b></a><br>"
text = text + "Copyright © 2001 NetServices C. R.. All Rights Reserved.<BR>"
set em = Server.CreateObject("CDONTS.NewMail")
em.From = "
[email protected]"
em.To = "
[email protected]"
em.Cc = "
[email protected]"
em.Subject = "Información desde " & titulo
em.bodyformat = 0
em.mailformat = 0
em.AttachFile " & fichero & ", "Fichero Adjunto"
em.Body = text
em.Send
set em = nothing
Cuando lo ejecuto antes de enviarlo me da el error antes descrito.
Ayudenme PLIS