Class: Mapi::Msg::Recipient
Overview
Recipient
serves as a container for the recip
directories in the .msg
.
It has things like office_location, business_telephone_number, but I don't think enough to make a vCard out of?
Constant Summary
Constants inherited from Recipient
Instance Attribute Summary collapse
-
#properties ⇒ Object
(also: #props)
readonly
Returns the value of attribute properties.
Instance Method Summary collapse
-
#initialize(obj, helper) ⇒ Recipient
constructor
A new instance of Recipient.
Methods inherited from Recipient
#email, #inspect, #name, #to_s, #type
Constructor Details
#initialize(obj, helper) ⇒ Recipient
Returns a new instance of Recipient.
508 509 510 511 512 |
# File 'lib/mapi/msg.rb', line 508 def initialize obj, helper @obj = obj super PropertySet.new(PropertyStore.load(@obj, helper)) Msg.warn_unknown @obj end |
Instance Attribute Details
#properties ⇒ Object (readonly) Also known as: props
Returns the value of attribute properties.
502 503 504 |
# File 'lib/mapi/msg.rb', line 502 def properties @properties end |