Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to change the below link into an form that posts params of the form to my controller to send an email... the current link works and sends an email...

<%= button_to 'Hello', contact_pages_path, :method => :put %>

In My controller I have:

 def contact
   Contact.contact_form.deliver
 end

My Mailer:

class Contact < ActionMailer::Base
  default from: "****"
  default to: "****"

  def contact_form
    mail(:subject => "Registered")
  end


end

and in my routes I have:

  resources :pages do
  put :contact, :on => :collection
  end

I realise that I need to create a body in the mailer - but I am not sure how to create a form to do this and pass it all on. I did think about creating a model to do this, but I thought having an entire model for just sending an email from a form would be slight over kill?

share|improve this question

3 Answers

up vote 0 down vote accepted
<%= form_tag(contact_pages_path, :method => "post") do %>
  <%= text_field_tag "article", "firstname" %> 
  <%= submit_tag("Search") %>
<% end -%>

When you submit it will go to contact_pages_path and in your controller try params[:article], so its value should be "first name".

share|improve this answer

You can create custom forms using form_tag and then use a text_area_tag to take in the body. As long as you give it a name, it will be sent in the params. Example (using HAML):

= form_tag contact_pages_path, :method => :put
    = text_area_tag "body"
    = submit_tag "Send"

And then in your controller you can access the text in the body with params[:body].

Look here for more information about the text_area_tag (takes in many options you may want to use) and you can also read up more on the form_tag.

This also doesn't require you to make an extra model.

share|improve this answer

try this

In erb file

<%= form_tag(contact_pages_path, :method => "post") do %>
  From : <%= text_field_tag "from_email", "" %> <br/>
  To : <%= text_field_tag "to_email", "" %> <br/>
  Message:<br/>
  <%= = text_area_tag "message" %>
  <%= submit_tag "send" %>
<% end %>

in action

def contact
 from_email = params[:from_email]
 to_email = params[:to_email]
 message = params[:message]

 // do operation to send the mail
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.