Class: Mail::ResentToField

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

Overview

Resent-To Field

The Resent-To field inherits resent-to StructuredField and handles the Resent-To: header field in the email.

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

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

Examples:

mail = Mail.new
mail.resent_to = 'Mikel Lindsaar <[email protected]>, [email protected]'
mail.resent_to    #=> ['[email protected]', '[email protected]']
mail[:resent_to]  #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ResentToField:0x180e1c4
mail['resent-to'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ResentToField:0x180e1c4
mail['Resent-To'] #=> '#<Mail::Field:0x180e5e8 @field=#<Mail::ResentToField:0x180e1c4

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

Constant Summary collapse

NAME =

:nodoc:

'Resent-To'

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