Hello, I have an email app running where I can send an email. How do I pass form data to my email notifier? here is my code that is not working. <%= start_form_tag :action => "index" %> <% if @flash[''notice''] %> <div class="Message"><%= @flash[''notice''] %></div> <% end %> <p> Please enter your email address: </p> <%= text_field "post", "email", :size => 20, :value => @email, :class=>"form" %><br /><br /> <input type="submit" value="Resend »" /> <%= end_form_tag %> *********************************************************** class IndexController < ApplicationController def index @p = params[:index] Notifier::deliver_signup_thanks(@p) end end *********************************************************** class Notifier < ActionMailer::Base def signup_thanks(p) # Email header info MUST be added here @recipients = "frocco-J3C02bkCjkfYtjvyW6yDsg@public.gmane.org" @from = "accounts-NNbln4oHrFpl57MIdRCFDg@public.gmane.org" @subject = "Thank you for registering with our website" # Email body substitutions go here @body = p.email end end _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails