Hi all
I have a regular HTML form that I want to convert into a RoR form
Because I do not need to save the data in the database I think I need: - a controller and a viewer - send submitted fields through email
<h2>Contact Form</h2> <form action="contact.html"> <fieldset> <legend>Please send your message: </legend> <p><label>Your Name:<br /><input type="text" /></label></p> <p><label>Your email:<br /><input type="email" /></label></p> <p><label>Message:<br /><textarea rows="5" cols="5"></textarea></label></p> <p><label><input type="submit" value="Submit" class="submit" /></label></p> </fieldset> </form>
thanks