Class: Mail::ResentFromField

Inherits:
CommonAddressField show all
Defined in:
lib/mail/fields/resent_from_field.rb

Overview

Resent-From Field

The Resent-From field inherits resent-from StructuredField and handles the Resent-From: header field in the email.

Sending resent_from to a mail message will instantiate a Mail::Field object that has a ResentFromField as its field type. This includes all Mail::CommonAddress module instance metods.

Only one Resent-From field can appear in a header, though it can have multiple addresses and groups of addresses.

Examples:

mail = Mail.new
mail.resent_from = 'Mikel Lindsaar <[email protected]>, [email protected]'
mail.resent_from    #=> ['[email protected]', '[email protected]']
mail[:resent_from]  #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ResentFromField:0x180e1c4
mail['resent-from'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ResentFromField:0x180e1c4
mail['Resent-From'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ResentFromField:0x180e1c4

mail[:resent_from].encoded   #=> 'Resent-From: Mikel Lindsaar <[email protected]>, [email protected]\r\n'
mail[:resent_from].decoded   #=> 'Mikel Lindsaar <[email protected]>, [email protected]'
mail[:resent_from].addresses #=> ['[email protected]', '[email protected]']
mail[:resent_from].formatted #=> ['Mikel Lindsaar <[email protected]>', '[email protected]']

Constant Summary collapse

NAME =

:nodoc:

'Resent-From'

Instance Attribute Summary

Attributes inherited from CommonField

#charset, #errors, #name, #value

Method Summary

Methods inherited from CommonAddressField

#<<, #address, #addresses, #addrs, #decoded_group_addresses, #default, #display_names, #each, #element, #encode_if_needed, #encoded_group_addresses, #formatted, #group_addresses, #group_names, #groups, #initialize, singular?

Methods inherited from NamedStructuredField

#initialize

Methods inherited from CommonField

#decoded, #default, #element, #encoded, #initialize, parse, #parse, #responsible_for?, #singular?, singular?, #to_s

Constructor Details

This class inherits a constructor from Mail::CommonAddressField