I have the following code. It is an ActionMailer class method which sends email containing two kinds of attachments:
pdf file (_attachment), rendered in memory and added directly to the message
some other files (_attached_files), that can be added from file system.
Everything works perfectly, except one thing - it leaks memory. As long as users send messages with attachments, memory consumption keeps growing and and growing. It does not return memory back. As far as I tested, I suspect that this problem is related to attached files from the file system, not rendered PDF file.
attachments[_attachment.pdf_filename] = render(_attachment.pdf_template_path, :format => :pdf)
_attached_files.try(:each) do |file|
attachments[file.attachment_file_name] = File.read(file.attachment.path, mode:"rb")
end
mail(:to =>_recipients, :from=>_sender_name, :subject => _subject)