Class TMail::ReceivedHeader
In: lib/tmail/header.rb
Parent: StructuredHeader

Methods

_for   _for=   by   by=   date   date=   from   from=   id   id=   via   via=   with  

Constants

PARSE_TYPE = :RECEIVED

Public Instance methods

[Source]

# File lib/tmail/header.rb, line 546
    def _for
      ensure_parsed
      @_for
    end

[Source]

# File lib/tmail/header.rb, line 551
    def _for=( arg )
      ensure_parsed
      @_for = arg
    end

[Source]

# File lib/tmail/header.rb, line 511
    def by
      ensure_parsed
      @by
    end

[Source]

# File lib/tmail/header.rb, line 516
    def by=( arg )
      ensure_parsed
      @by = arg
    end

[Source]

# File lib/tmail/header.rb, line 556
    def date
      ensure_parsed
      @date
    end

[Source]

# File lib/tmail/header.rb, line 561
    def date=( arg )
      ensure_parsed
      @date = arg
    end

[Source]

# File lib/tmail/header.rb, line 501
    def from
      ensure_parsed
      @from
    end

[Source]

# File lib/tmail/header.rb, line 506
    def from=( arg )
      ensure_parsed
      @from = arg
    end

[Source]

# File lib/tmail/header.rb, line 536
    def id
      ensure_parsed
      @id
    end

[Source]

# File lib/tmail/header.rb, line 541
    def id=( arg )
      ensure_parsed
      @id = arg
    end

[Source]

# File lib/tmail/header.rb, line 521
    def via
      ensure_parsed
      @via
    end

[Source]

# File lib/tmail/header.rb, line 526
    def via=( arg )
      ensure_parsed
      @via = arg
    end

[Source]

# File lib/tmail/header.rb, line 531
    def with
      ensure_parsed
      @with
    end

[Validate]