Class: Mail::Envelope
- Inherits:
-
StructuredField
- Object
- StructuredField
- Mail::Envelope
- Defined in:
- lib/mail/envelope.rb
Constant Summary
Constants included from Constants
Constants::ASTERISK, Constants::ATOM_UNSAFE, Constants::B_VALUES, Constants::CAPITAL_M, Constants::COLON, Constants::CONTROL_CHAR, Constants::CR, Constants::CRLF, Constants::CR_ENCODED, Constants::EMPTY, Constants::ENCODED_VALUE, Constants::EQUAL_LF, Constants::FIELD_BODY, Constants::FIELD_LINE, Constants::FIELD_NAME, Constants::FIELD_PREFIX, Constants::FIELD_SPLIT, Constants::FWS, Constants::HEADER_LINE, Constants::HEADER_SPLIT, Constants::HYPHEN, Constants::LF, Constants::LF_ENCODED, Constants::NULL_SENDER, Constants::PHRASE_UNSAFE, Constants::QP_SAFE, Constants::QP_UNSAFE, Constants::Q_VALUES, Constants::SPACE, Constants::TEXT, Constants::TOKEN_UNSAFE, Constants::UNDERSCORE, Constants::WSP
Instance Method Summary collapse
- #date ⇒ Object
- #element ⇒ Object
- #from ⇒ Object
-
#initialize(*args) ⇒ Envelope
constructor
A new instance of Envelope.
Methods inherited from StructuredField
#charset, #charset=, #default, #errors
Methods included from Utilities
#atom_safe?, #bracket, #capitalize_field, #constantize, #dasherize, #dquote, #escape_paren, #map_lines, #map_with_index, #match_to_s, #paren, #quote_atom, #quote_phrase, #quote_token, #token_safe?, #unbracket, #underscoreize, #unparen, #unquote, #uri_escape, #uri_parser, #uri_unescape
Methods included from CommonField
#default, #field_length, #name, #name=, #responsible_for?, #to_s, #value, #value=
Constructor Details
#initialize(*args) ⇒ Envelope
Returns a new instance of Envelope.
13 14 15 |
# File 'lib/mail/envelope.rb', line 13 def initialize(*args) super(FIELD_NAME, strip_field(FIELD_NAME, args.last)) end |
Instance Method Details
#date ⇒ Object
21 22 23 |
# File 'lib/mail/envelope.rb', line 21 def date ::DateTime.parse("#{element.date_time}") end |
#element ⇒ Object
17 18 19 |
# File 'lib/mail/envelope.rb', line 17 def element @element ||= Mail::EnvelopeFromElement.new(value) end |
#from ⇒ Object
25 26 27 |
# File 'lib/mail/envelope.rb', line 25 def from element.address end |