Sha256: c0046e30cae943e3446d77d88d71bac64770b1a7c4c9c53a451a69a4f77ec0d0

Contents?: true

Size: 573 Bytes

Versions: 14

Compression:

Stored size: 573 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true
#
# = Mail Envelope
#
# The Envelope class provides a field for the first line in an
# mbox file, that looks like "From mikel@test.lindsaar.net DATETIME"
#
# This envelope class reads that line, and turns it into an
# Envelope.from and Envelope.date for your use.

module Mail
  class Envelope < NamedStructuredField
    NAME = 'Envelope-From'

    def element
      @element ||= Mail::EnvelopeFromElement.new(value)
    end

    def from
      element.address
    end

    def date
      element.date_time
    end
  end
end

Version data entries

14 entries across 14 versions & 5 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/mail-2.8.1/lib/mail/envelope.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/mail-2.8.1/lib/mail/envelope.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/envelope.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/envelope.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/envelope.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/mail-2.8.1/lib/mail/envelope.rb
mail-2.8.1 lib/mail/envelope.rb
mail-2.8.1.rc2 lib/mail/envelope.rb
mail-2.8.0.1 lib/mail/envelope.rb
mail-2.8.0.1.rc1 lib/mail/envelope.rb
mail-2.8.0 lib/mail/envelope.rb
mail-2.8.0.rc3 lib/mail/envelope.rb
mail-2.8.0.rc2 lib/mail/envelope.rb
mail-2.8.0.rc1 lib/mail/envelope.rb