HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/gems/ruby-3.0.2/gems/mail-2.7.1/lib/mail/elements/envelope_from_element.rb
# encoding: utf-8
# frozen_string_literal: true
require 'mail/parsers/envelope_from_parser'
require 'date'

module Mail
  class EnvelopeFromElement
    attr_reader :date_time, :address

    def initialize(string)
      envelope_from = Mail::Parsers::EnvelopeFromParser.parse(string)
      @address = envelope_from.address
      @date_time = ::DateTime.parse(envelope_from.ctime_date)
    end

    # 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);
    def formatted_date_time
      if date_time.respond_to?(:ctime)
        date_time.ctime
      else
        date_time.strftime '%a %b %e %T %Y'
      end
    end

    def to_s
      "#{address} #{formatted_date_time}"
    end
  end
end