I want to send pdf as attachment with email but should not render the pdf... my code
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @claim }
format.report { render_report }
format.xls { render_report }
format.pdf do
send_data show.render,:filename=>"default_filename.pdf", :type=>"application/pdf"
#format.pdf { render :layout => false }
end
end