Class: Mail::ReceivedElement
- Inherits:
-
Object
- Object
- Mail::ReceivedElement
- Includes:
- Utilities
- Defined in:
- lib/mail/elements/received_element.rb
Instance Method Summary collapse
- #date_time ⇒ Object
- #info ⇒ Object
-
#initialize(string) ⇒ ReceivedElement
constructor
A new instance of ReceivedElement.
- #to_s(*args) ⇒ Object
Methods included from Utilities
Constructor Details
#initialize(string) ⇒ ReceivedElement
Returns a new instance of ReceivedElement.
7 8 9 10 11 12 13 14 15 |
# File 'lib/mail/elements/received_element.rb', line 7 def initialize( string ) parser = Mail::ReceivedParser.new if tree = parser.parse(string) @date_time = ::DateTime.parse("#{tree.date_time.date.text_value} #{tree.date_time.time.text_value}") @info = tree.name_val_list.text_value else raise Mail::Field::ParseError, "ReceivedElement can not parse |#{string}|\nReason was: #{parser.failure_reason}\n" end end |
Instance Method Details
#date_time ⇒ Object
17 18 19 |
# File 'lib/mail/elements/received_element.rb', line 17 def date_time @date_time end |
#info ⇒ Object
21 22 23 |
# File 'lib/mail/elements/received_element.rb', line 21 def info @info end |
#to_s(*args) ⇒ Object
25 26 27 |
# File 'lib/mail/elements/received_element.rb', line 25 def to_s(*args) "#{@info}; #{@date_time.to_s(*args)}" end |