Class: Net::IMAP::Envelope
- Inherits:
-
Struct
- Object
- Struct
- Net::IMAP::Envelope
- Defined in:
- lib/net/imap/response_data.rb
Overview
Net::IMAP::Envelope represents envelope structures of messages.
Fields:
- date
-
Returns a string that represents the date.
- subject
-
Returns a string that represents the subject.
- from
-
Returns an array of Net::IMAP::Address that represents the from.
- sender
-
Returns an array of Net::IMAP::Address that represents the sender.
- reply_to
-
Returns an array of Net::IMAP::Address that represents the reply-to.
- to
-
Returns an array of Net::IMAP::Address that represents the to.
- cc
-
Returns an array of Net::IMAP::Address that represents the cc.
- bcc
-
Returns an array of Net::IMAP::Address that represents the bcc.
- in_reply_to
-
Returns a string that represents the in-reply-to.
- message_id
-
Returns a string that represents the message-id.
Instance Attribute Summary collapse
-
#bcc ⇒ Object
Returns the value of attribute bcc.
-
#cc ⇒ Object
Returns the value of attribute cc.
-
#date ⇒ Object
Returns the value of attribute date.
-
#from ⇒ Object
Returns the value of attribute from.
-
#in_reply_to ⇒ Object
Returns the value of attribute in_reply_to.
-
#message_id ⇒ Object
Returns the value of attribute message_id.
-
#reply_to ⇒ Object
Returns the value of attribute reply_to.
-
#sender ⇒ Object
Returns the value of attribute sender.
-
#subject ⇒ Object
Returns the value of attribute subject.
-
#to ⇒ Object
Returns the value of attribute to.
Instance Attribute Details
#bcc ⇒ Object
Returns the value of attribute bcc
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def bcc @bcc end |
#cc ⇒ Object
Returns the value of attribute cc
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def cc @cc end |
#date ⇒ Object
Returns the value of attribute date
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def date @date end |
#from ⇒ Object
Returns the value of attribute from
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def from @from end |
#in_reply_to ⇒ Object
Returns the value of attribute in_reply_to
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def in_reply_to @in_reply_to end |
#message_id ⇒ Object
Returns the value of attribute message_id
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def @message_id end |
#reply_to ⇒ Object
Returns the value of attribute reply_to
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def reply_to @reply_to end |
#sender ⇒ Object
Returns the value of attribute sender
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def sender @sender end |
#subject ⇒ Object
Returns the value of attribute subject
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def subject @subject end |
#to ⇒ Object
Returns the value of attribute to
303 304 305 |
# File 'lib/net/imap/response_data.rb', line 303 def to @to end |