mlangenberg (owner)

Revisions

gist: 7461 Download_button fork
public
Public Clone URL: git://gist.github.com/7461.git
Embed All Files: show embed
test.rb #
1
2
3
4
5
6
7
8
9
10
11
class Test < Application
 
  # ...and remember, everything returned from an action
  # goes to the client...
  def index
    body = render(:format => :html)
    render(:template => 'test/mail', :format => :text, :layout => false)
    body
  end
  
end