asptoday_discuss thread: How to access a file from user.SImilar to attachments in Email
You can use CDONTS. I guess this is best way.
------------------------------------------------------------------------
----------------------------
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
' this is standard
objCDOMail.From = "firstname lastname <name@d...>"
objCDOMail.To = "to@d..."
objCDOMail.Subject = "subject"
objCDOMail.Body = "some text here"
objCDOMail.AttachFile "c:\attach.txt", "attach.txt"
objCDOMail.Send
Set objCDOMail = Nothing
------------------------------------------------------------------------
----------------------------
Hope this helps.
david...