Methods
H
M
N
S
Instance Public methods
hello()
# File actionmailer/test/mail_layout_test.rb, line 8
def hello
  mail()
end
multipart(type = nil)
# File actionmailer/test/mail_layout_test.rb, line 22
def multipart(type = nil)
  mail(:content_type => type) do |format|
    format.text { render }
    format.html { render }
  end
end
nolayout()
# File actionmailer/test/mail_layout_test.rb, line 17
def nolayout
  @world = "Earth"
  mail(:body => render(:inline => "Hello, <%= @world %>", :layout => false))
end
spam()
# File actionmailer/test/mail_layout_test.rb, line 12
def spam
  @world = "Earth"
  mail(:body => render(:inline => "Hello, <%= @world %>", :layout => 'spam'))
end