Class: Mail::FromField

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

Overview

From Field

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

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

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

Examples:

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

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

Constant Summary collapse

NAME =

:nodoc:

'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