Hi,

I'm sure this has been discussed here somewhere, but I can't find exactly what I want...

I have a form set up that is sent to different email addresses based on field selections.

Sometimes that user will need to attach a file to send too.

I have found code to enable the user to upload a file (to server or to Access Database) (thank you Lewis E. Moten III: http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=7361&lngWId=4), but I cannot find anything on how to attach the uploaded file to the email sent to end-user, on submission.

Any help much appreciated!

What are you using to send the email? For example CDONTS, CDOSYS or is it for Apache?

What are you using to send the email? For example CDONTS, CDOSYS or is it for Apache?

Just for some closure on this...

I ended up using

http://www.stardeveloper.com/articles/display.html?article=2001033101&page=1

to write the files to a database (option for uploading to server also on this site) and then using CDONTS to send the email:

dim objMail

Set objMail = CreateObject("CDONTS.NewMail")

objMail.To = "mail@mail.com"
objMail.From = Trim(email)
		objMail.BodyFormat = 0 ' HTML format
		objMail.MailFormat = 0
		....

' -- send the email --			   
objMail.Send

' -- clean up object
Set objMail = Nothing
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.