# File lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb, line 1026
    def each_destination( &block )
      destinations([]).each do |i|
        if Address === i
          yield i
        else
          i.each(&block)
        end
      end
    end