
16/08/2002, 11:10
|
| | Fecha de Ingreso: febrero-2002
Mensajes: 49
Antigüedad: 23 años, 3 meses Puntos: 0 | |
Enviar mails con cdonts Tengo un problema con el CDONTS para enviar mails.
Mi codigo de envío es:
<%
Set objmail = Server.CreateObject("CDONTS.NewMail")
objmail.mailFormat = 0
objmail.bodyFormat = 0
objmail.from = Request("remitente")
objmail.to = Request("destinatario")
objmail.subject = Request("asunto")
objmail.body = Request("cuerpo")
objmail.send
Set objmail = Nothing
%>
==========
Y el error que me da es:
error '80070003'
The system cannot find the path specified.
/varios/mail/send.asp, line 16
==========
Alguien me puede ayudar?
Gracias.
Sebcun |