Key Highlights
- Inspect low-level CFB storages, streams, and property bags using CFBReader and MsgReader.
- Create new Outlook-compatible .msg files in pure Python with MapiMessage.create().
- Read recipients, attachments, and embedded messages through the MapiMessage class.
- Convert between MSG and Python’s EmailMessage for interoperability with standard email tooling.
- Access and manipulate MAPI properties at both high and low levels using consistent APIs.
- Serialize and deserialize CFB containers deterministically using CFBWriter and CFBDocument.
# source: snippet_0
from aspose.email_foss.msg import MapiMessage
from aspose.email_foss.cfb import CFBReader
See Also
- Inspect CFB storages and streams
- Overview of Aspose.Email FOSS
- Convert email file formats
- Fix common errors
- Load email files
Introduction
The library supports inspecting low-level CFB storages, streams, and property bags through the CFBReader and MsgReader classes.
The library supports creating new Outlook-compatible .msg files in pure Python using the MapiMessage.create() method.
The library supports reading recipients, attachments, and embedded messages through the MapiMessage class.