Class: Mail::FileDelivery
- Inherits:
-
Object
- Object
- Mail::FileDelivery
- Defined in:
- lib/mail/network/delivery_methods/file_delivery.rb
Overview
FileDelivery class delivers emails into multiple files based on the destination address. Each file is appended to if it already exists.
So if you have an email going to fred@test, bob@test, joe@anothertest, and you set your location path to /path/to/mails then FileDelivery will create the directory if it does not exist, and put one copy of the email in three files, called by their message id
Make sure the path you specify with :location is writable by the Ruby process running Mail.
Instance Attribute Summary collapse
-
#settings ⇒ Object
Returns the value of attribute settings.
Instance Method Summary collapse
- #deliver!(mail) ⇒ Object
-
#initialize(values) ⇒ FileDelivery
constructor
A new instance of FileDelivery.
Constructor Details
permalink #initialize(values) ⇒ FileDelivery
Returns a new instance of FileDelivery.
20 21 22 |
# File 'lib/mail/network/delivery_methods/file_delivery.rb', line 20 def initialize(values) self.settings = { :location => './mails', :extension => '' }.merge!(values) end |
Instance Attribute Details
permalink #settings ⇒ Object
Returns the value of attribute settings.
18 19 20 |
# File 'lib/mail/network/delivery_methods/file_delivery.rb', line 18 def settings @settings end |
Instance Method Details
permalink #deliver!(mail) ⇒ Object
[View source]
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/mail/network/delivery_methods/file_delivery.rb', line 24 def deliver!(mail) envelope = Mail::SmtpEnvelope.new(mail) if ::File.respond_to?(:makedirs) ::File.makedirs settings[:location] else ::FileUtils.mkdir_p settings[:location] end envelope.to.uniq.each do |to| path = ::File.join(settings[:location], File.basename(to.to_s+settings[:extension])) ::File.open(path, 'a') do |f| f.write envelope. f.write "\r\n\r\n" end end end |