Method: MailsViewer::HomeController#html

Defined in:
app/controllers/mails_viewer/home_controller.rb

#htmlObject



27
28
29
30
31
32
33
34
35
# File 'app/controllers/mails_viewer/home_controller.rb', line 27

def html
  if @filename
    mail = Mail.read(@filename)
    body = mail.html_part ? mail.html_part.body : mail.body
    render text: body
  else
    head :not_found
  end
end