public Method

Mail.destinations( default = nil )

There's no documentation for this item.

Source Code

# File action_mailer/vendor/tmail-1.1.0/tmail/interface.rb, line 500
def destinations( default = nil )
  ret = []
  %w( to cc bcc ).each do |nm|
    if h = @header[nm]
      h.addrs.each {|i| ret.push i.address }
    end
  end
  ret.empty? ? default : ret
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.