aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/delivery_method/file.rb
blob: 8807a05221360f3a40ec8774d581b68e7944c436 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'tmpdir'
module ActionMailer
  module DeliveryMethod

    # A delivery method implementation which writes all mails to a file.
    class File < Method

      self.settings = {
        :location       => defined?(Rails) ? "#{Rails.root}/tmp/mails" : "#{Dir.tmpdir}/mails"
      }

      def perform_delivery(mail)
        FileUtils.mkdir_p settings[:location]

        (mail.to + mail.cc + mail.bcc).uniq.each do |to|
          ::File.open(::File.join(settings[:location], to), 'a') { |f| f.write(mail) }
        end
      end
    end
  end
end