Skip to content

Recipient

The Recipient object provides access to properties for a recipient of the message.

This object is accessed using the Message.recipients property:

>>> from oxmsg import Message

>>> msg = Message.load("message.msg")
>>> recipient = msg.recipients[0]
>>> recipient.name
'Jane Doe'

Recipient

A recipient of an Outlook email message.

email_address() -> str

The email address of this recipient.

name() -> str

The name of this recipient.

properties() -> Properties

Provides access to the properties of this OXMSG object.