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