Hi
Code I used was this:
strEmail = request.form("Email")
strBody= "Thank you for your request"
set objEMail = Server.CreateObject("CDONTS.NewMail")
objEMail.To = strEmail
objEMail.From = "
[email protected]"
objEMail.subject = "Confirmation"
objEMail.body = strBody
objEMail.send
set objEMail = nothing
response.redirect "registered.asp"
However this does depend on which dll is installed. The above uses cdont.dll which usually ships with Win2k but can also use cdosys.dll which has a different format.
Hope this helps.
Lindsey