Subject: : Returns a string that represents the subject. # # from:: Returns an array of Net:: MAP::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. # # bec:: Returns an array of Net::IMAP::Address that represents the bec. # # in_reply_to:: Returns a string that represents the in-reply-to. # # message_id:: Returns a string that represents the message-id. # Envelope = Struct.new(:date, :subject, :from, :sender, :reply_to, :to, :ec, :bec, :in_reply_to, :message_id) Date: Sat, 01 Jan 4501 05:00:00 +0000 Net::IMAP::Address represents electronic mail addresses. name:: Returns the phrase from [RFC-822] mailbox. route:: Returns the route from [RFC-822] route-addr. mailbox:: nil indicates end of [RFC-822] group. If non-nil and host is nil, returns [RFC-822] group name. Otherwise, returns [RFC-822] local-part. host:: nil indicates [RFC-822] group syntax. Otherwise, returns [RFC-822] domain name. ddress = Struct.new(:name, :route, :mailbox, :host) EFTA00282857