Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Reply to e-mail in a form submission

Options
  • 07-08-2007 7:13pm
    #1
    Registered Users Posts: 1,641 ✭✭✭


    Have a bit of probelm i need to put a site together for my aunt who runs a b+b and i need a contact form in it, but when she receives the form to her e-mail and when she hits reply i want to reply to the e-mail that was entered in the form, anybody know how i can create this easy enough, i will be hosting the site on freehostia.com


Comments

  • Registered Users Posts: 2,593 ✭✭✭tommycahir


    have a look at the one @ http://www.tectite.com/ it is pretty simple to use and very safe also.. It has has a wizard that helps you set it up also.


  • Registered Users Posts: 378 ✭✭sicruise


    As the man said formmail is easiest way to go about this and you have perl cgi with that free hosting package...

    It'll be something like this in your page...
    <form action="http://yourdomain.com/cgi-bin/formmail.pl" method="POST">
    <input type="hidden" name="recipient" value="you@yourdomain.com">
    	<input type="hidden" name="subject" value="B&B Booking">
    	<input type="hidden" name="redirect" value="http://yourdomain.com/thankyou.html">
    <br>
    Your Name : <input type="text" name="realname" size="20"/>
    <br>
    Whatever else : <input type="text" name="whatever" size="20"/></form>
    


Advertisement