Are you looking for the email componant?
There is an email componant from Dundas software (
www.dundas.com) is free and very easy to use. I love it. Sending attachmens is very easy is well documented
A small snip of sample code (w/o the attachment code) is:
<snip>
Set objMailer = Server.CreateObject("Dundas.Mailer")
objMailer.SMTPRelayServers.Add "127.0.0.1"
objMailer.FromAddress = "admin@mysite.com"
objMailer.FromName = "Your Webserver"
objMailer.Subject = "Your requested info"
objMailer.TOs.Add Request.Form("Email")
objMailer.BCCs.Add "admin@mysite.com"
sBody = sBody & "Here is the info.." & vbCrLf
sBody = sBody & "" & vbCrLf
sBody = sBody & "Add misc text here..." & vbCrLf
sBody = sBody & "" & vbCrLf
objMailer.Body = sBody
objMailer.SendMail
Set objMailer = Nothing
</snip>