I would also like an answer to this as I was unable to find it.
My solution was to upload the file onto the server via the form/multi-part type and the posting acceptor and then use CDONTS to mail the attatchment.
James James Culshaw
jculshaw@active-data-solutions.co.uk
You can use the "AttachFile()" method of "NewMail" object from the CDONTS library:
'//sample//
Dim myMail
Set myMail = CreateObject("CDONTS.NewMail"
myMail.To = "ntbutic@kimianet.com"
myMail.Subject = "Sample attachment"
myMail.Body = "This mail is attached to a file."
myMail.AttachFile "c:\attach.txt"
myMail.Send
Set myMail = Nothing
'//end sample//
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.