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
link|improve this question
Is this code your current code? You have two format.pdf sections and two send_data? Also, do you expect the above to send an email? – Jesse Wolgamott Sep 27 '11 at 12:54
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.