Class: DraftBox::AttachmentsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/draft_box/attachments_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



3
4
5
6
7
8
# File 'app/controllers/draft_box/attachments_controller.rb', line 3

def show
  @email = DraftBox::Email.find(params[:email_id])
  @attachment = @email.attachments.find(params[:id])

  send_data @attachment.data, filename: @attachment.filename, type: @attachment.content_type
end