Does your web-server use CDONTS or have the capability of using CDONTS to send mail?
If so, ditch the Big Nose Bird CGI script and try this -->
mailto = request.form("form_field_email"

varname = request.form("form_field_name"
varusername = request.form("form_field_username"

varcontribution = request.form("form_field_contribution"
Dim MyMail
Set MyMail = Server.CreateObject("CDONTS.NewMail"
MyMail.To = mailto
MyMail.From = "you@yourwickedsite.com"
MyMail.Subject = "Form Submission Received"
MyMail.Body = "Thanks " & varname & ". Your request has been received." & vbcrlf & vbcrlf & "This is just to let you know we got your request. Processing will take a day or so." & vbcrlf & vbcrlf & "We have you down as " & varusername & "@yourwickedsite.com. Great choice." & vbcrlf & vbcrlf & "This is an automated response."
MyMail.Send
Set MyMail = Nothing
I use this script on my site to process requests for free email accounts. If you want to send an email to yourself, just modify the script so that MyMail.To = "youremailaddress@host.com".
Then modify the body of the message accordingly. You can format the email however you want. The nice thing about this is that you can kill two birds with one simple stone. You can email the submitter and confirm that the request was received, then you can email the form contents to yourself in a nice little format.
Need more help with CDONTS, go to the ASP forum and search within it for CDONTS.