Within the page form.asp you will need to edit the line: SendMail.to = "you@yourdomainname.com" Simply change the email address to the address you want the email to be sent. If your form.htm page does not have a field for the users email address then you will need to change the line: SendMail.From = request.form("email") to SendMail.From = "form@serve360.com" You can also edit the style of the pages to fit in with your site. Also you can add new field names to collect data. Remember to add them to the form.asp page as well using the following syntax: StrBody = StrBody & request.form("name") & vbcrlf In the above example you would just need to change the text 'name' to what you have called it in the form.htm page.