class Mail::CommonAddressField

def formatted

Returns the formatted string of all the addresses in the address list
def formatted
  list = element.addresses.map { |a| a.format }
  Mail::AddressContainer.new(self, list)
end