Ver Mensaje Individual
  #7 (permalink)  
Antiguo 19/04/2003, 18:09
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 5 meses
Puntos: 0
si, el cdont viene con el iis...

prueba esto...sino te jala..es que hay algun problema con la componente...
Código:
Set myMail = Server.CreateObject( "CDONTS.Newmail" )
myMail.From = "[email protected]"
myMail.To = "[email protected]"
myMail.Subject = "probando"
myMail.Body = "esto es una prueba"
myMail.Send
On error resume next
 if err.number<>0 then
   response.write err.number  & "<br>"
   response.write err.description & "<br>"
   response.end
 else
   response.write "ok"
 en if
Set myMail = Nothing