Ver Mensaje Individual
  #9 (permalink)  
Antiguo 19/04/2003, 18:23
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
bueno..entonces lo que queda es probar con la propiedad atach..agregale el atach y veamos que pasa

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"

my0Mail.Attachfile "c:\tmp\logo.gif","Figura", 1 

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