mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
186cd7bc53
Conflicts: actionmailer/lib/action_mailer.rb actionmailer/lib/action_mailer/delivery_method/smtp.rb
21 lines
544 B
Ruby
21 lines
544 B
Ruby
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.root) ? "#{Rails.root}/tmp/mails" : "#{Dir.tmpdir}/mails"
|
|
}
|
|
|
|
def perform_delivery(mail)
|
|
FileUtils.mkdir_p settings[:location]
|
|
|
|
mail.destinations.uniq.each do |to|
|
|
::File.open(::File.join(settings[:location], to), 'a') { |f| f.write(mail) }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|