Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8493217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T22:56:38+00:00 2026-06-10T22:56:38+00:00

In my Rails application, I’m trying to attach the invoice to the email: def

  • 0

In my Rails application, I’m trying to attach the invoice to the email:

def invoice(invoice)
  attachment :content_disposition => "attachment",
             :body => InvoicePdf.new(invoice),
             :content_type => "application/pdf",
             :filename => 'invoice.pdf'

  mail(:to => @user.email, :subject => "Your Invoice")
end

The InvoicePdf is a Prawn PDF document:

class InvoicePdf < Prawn::Document
  def initialize(order, view)
    draw_pdf
  end

  def draw_pdf
    # pdf stuff
  end
end

I get no attachments in the email. What am I doing wrong? Any tips would be welcomed and appreciated.

Edit: The Rails version I’m using is 3.0.x

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T22:56:40+00:00Added an answer on June 10, 2026 at 10:56 pm

    Take a look at the Action Mailer Guide. You need to call the attachments method for you to add an attachment.

    Try this:

    attachments['attachment_filename'] = InvoicePdf.new(invoice)
    

    This is assuming that calling InvoicePdf.new(invoice) generates a file and returns an IO object representing that file. I also noticed that your InvoicePdf class initializer expects two parameters but you are passing only one.

    Update:
    Also note that Action Mailer will take the file name and work out the mime type, set the Content-Type, Content-Disposition, Content-Transfer-Encoding and base64 encode the contents of the attachment all for you so setting it manually isn’t necessary unless you want to override the defaults.

    Based on your pdf generation method, this will probably be better:

    invoice = InvoicePdf.new(invoice)
    attachments["invoice.pdf"] = { :mime_type => 'application/pdf', :content => invoice.render }
    mail(:to => @user.email, :subject => "Your Invoice")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my new Rails application (it's my first one!) Users can manage their Clients
I have a RESTful Rails application with a resource called Foo. I'm trying to
I'm debugging my rails application when the user enters a new file Uload_image to
In rails application, i am trying to fetch few records using a Ajax/jQuery, am
I have a rails application that I am trying to integrate devise_invitable into. So,
My Rails application generates a ~10MB response dynamically like so: self.status_code = 200 self.response-body
The Rails application I'm working on, has two central pieces: users and groups. A
My Rails application has a number of tasks which are offloaded into background processes,
My Rails application makes use of Time.zone so that each user can set their
I am building a Rails application that contains Developer s who have Application s.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.