method

address_list

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: Mail::Message
address_list(obj) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailbox/lib/action_mailbox/mail_ext/addresses.rb, line 34
      def address_list(obj)
        if obj&.respond_to?(:element)
          # Mail 2.8+
          obj.element
        else
          # Mail <= 2.7.x
          obj&.address_list
        end
      end
Register or log in to add new notes.