I have what I think is a very simple problem. I\'m coming from a PhP background, and used to do this all the time, so I may be looking at this the wrong way.
I am trying
Using
print params[:email]
will just print that value to the application logs, not into the response.
You want this:
render :text => params[:email]