search for: tableless_contact_form

Displaying 7 results from an estimated 7 matches for "tableless_contact_form".

2006 Jun 26
9
Form Mail
What is the most RoR friendly way of making a form mailer similar to this php one? http://tips-scripts.com/?tip=form_mail#tip Or is it easier just to use the php with RoR? -- Posted via http://www.ruby-forum.com/.
2006 Oct 17
1
Routing Problem
Hi, I have a folder structure see below which basically has a fodler for the main pages of the site(main) and another folder which contains a ajax_scaffold grid to allow a user to view/sort/download documents: views main documents Controllers -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2006 Aug 13
1
Online Form
I can''t find a beginner''s tutorial for creating an online form that submits via email-does anyone know of one? How difficult is this in rails? james -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060813/9eb800d5/attachment.html
2006 May 26
3
validate a form NOT connected to a model
Is there any way to validate a form that isn''t connected to a model. I have a form that connects to a controller action and I want to validate the inputs on the form like I would with the validates_ATTRIBUTE_of property on a model. Is there any way to do this? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Oct 05
2
create contact form
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>
2006 Jun 12
8
sending email
Hi, Has anyone got any good tutorials on how to send emails in ruby, seems a bit more complicted than PHP Thanks Scott -- Posted via http://www.ruby-forum.com/.
2006 Jan 24
5
simple formmail question
I have a few forms that I''d like users to fill out. The results of the form will be sent to a few addresses. What''s the least painless way to do this and keep everything DRY? There''s no database involved. Ideally, I''d like to email the form questions with the answers inline. Seems like using ActionMailer and separate email views would be overkill in this