Method: Mail::EnvelopeFromElement#formatted_date_time

Defined in:
lib/mail/elements/envelope_from_element.rb

#formatted_date_timeObject

RFC 4155:

a timestamp indicating the UTC date and time when the message
was originally received, conformant with the syntax of the
traditional UNIX 'ctime' output sans timezone (note that the
use of UTC precludes the need for a timezone indicator);


21
22
23
24
25
26
27
# File 'lib/mail/elements/envelope_from_element.rb', line 21

def formatted_date_time
  if date_time.respond_to?(:ctime)
    date_time.ctime
  else
    date_time.strftime '%a %b %e %T %Y'
  end
end