cancel
Showing results for 
Search instead for 
Did you mean: 

setting up website forms that send to my email

davidstreatfiel
Newbie
Posts: 8
Registered: ‎14-04-2009

setting up website forms that send to my email

Hi All
I am trying to create a simple enqiry form on my web site that sends the responses back to my email. How do I do this with dreamweavwer? I have activated CGI and know how to make the form but dont know how to link it to the CGI on plusnet
Thanks Dave
1 REPLY 1
samuria
Grafter
Posts: 1,581
Thanks: 3
Registered: ‎13-04-2007

Re: setting up website forms that send to my email

Simple use plus net script
copy this script to a html file its from my page http://www.crewetown.co.uk/sk8/cont.htm
put in your email were it says myemail change feedback from skate park to the message you want in the email and the jobs a good en
<form method="post" action="http://homepages.plus.net/cgi-bin/form">
    <p>
      <input type="hidden" name="recipient" value="myemail@plus.com" />
      <input type="hidden" name="subject" value="feedback from my Skatepark web page" />
      <b>Enter Your Email Address</b>
      <input type="text" name="email" />
      <input type="hidden" name="realname" />
    </p>
    <p><b>Please enter your comments or message here</b></p>
    <p>
      <textarea rows="20" cols="50" name="text area">
</textarea>
    </p>
    <p></p>
    <input name="submit0" type="submit" value="Submit form" />
    <input name="reset" type="reset" value="Clear form" />
  </form>