Uvod

Aspose.Email FOSS for Python is now available on PyPI: a free, MIT-licensed library for creating, reading, and converting Outlook .msg datoteke u potpunosti u Python, bez zavisnosti od Microsoft Office-a ili bilo koje native ekstenzije. Instalirajte ga pomoću pip install aspose-email-foss>=26.3 i odmah počnite raditi sa MSG i CFB kontejnerima.

Biblioteka cilja Python 3.10 i novije. Implementira Compound File Binary (CFB) format i MSG format poruke od nule, pružajući vam determinističku kontrolu nad načinom serijalizacije i čitanja email poruka. Pošto je implementacija čisti Python, radi identično na Windows, macOS, Linux i u kontejnerizovanim okruženjima.

Aspose.Email FOSS is designed for developers building email processing pipelines, compliance archival tools, forensic analysis workflows, or any application that needs to create or inspect Outlook-compatible message files without a running Exchange or Outlook installation.


Ključne karakteristike

Kreirajte MSG fajlove

Izgradite Outlook-compatible .msg datoteke od nule koristeći MapiMessage.create(). Postavite standardna MAPI svojstva kao što su predmet, pošiljalac, vreme isporuke i polja za prikaz putem PropertyId enum. Dodajte primaoce pomoću add_recipient() i priloge datoteka pomoću add_attachment(), zatim sačuvajte rezultat na disk.

from aspose.email_foss import msg

message = msg.MapiMessage.create(
    "Quarterly status update and rollout plan",
    "Hello team,\n\nPlease find the latest rollout summary attached.\n\nRegards,\nEngineering",
)

message.set_property(msg.PropertyId.SENDER_NAME, "Build Agent")
message.set_property(msg.PropertyId.SENDER_EMAIL_ADDRESS, "build.agent@example.com")
message.set_property(msg.PropertyId.INTERNET_MESSAGE_ID, "<example-001@example.com>")

message.add_recipient("alice@example.com", display_name="Alice Example")
message.add_recipient("bob@example.com", display_name="Bob Example")
message.add_recipient(
    "carol@example.com",
    display_name="Carol Example",
    recipient_type=msg.RECIPIENT_TYPE_CC,
)

message.add_attachment("hello.txt", b"sample attachment\n", mime_type="text/plain")
message.save("example-message.msg")

Čitajte i konvertujte MSG u EML

Učitaj postojeći .msg fajl sa MapiMessage.from_file() i pretvori ga u standardni Python EmailMessage objekat putem to_email_message(). Odatle, serijalizuj u EML bajtove za skladištenje ili prosleđivanje putem SMTP-a.

from aspose.email_foss import msg

with msg.MapiMessage.from_file("example-message.msg") as loaded:
    email_message = loaded.to_email_message()
    eml_bytes = email_message.as_bytes()

with open("example-message.eml", "wb") as f:
    f.write(eml_bytes)

Ispitajte interne strukture MSG‑a

Koristi MsgReader i njegovu osnovnu CFBReader za pregled binarne strukture MSG fajla. Pristupi CFB metapodacima (verzija, veličina sektora, broj unosa u direktorijumu) i iteriraj kroz MAPI unose svojstava na binarnom nivou.

from aspose.email_foss import msg

reader = msg.MsgReader.from_file("example-message.msg")
cfb = reader.cfb_reader

print(f"CFB major_version={cfb.major_version}")
print(f"sector_size={cfb.sector_size}")
print(f"directory_entries={cfb.directory_entry_count}")

for entry in reader.iter_top_level_fixed_length_properties():
    tag = entry.property_tag
    print(f"tag=0x{tag:08X} flags=0x{entry.flags:08X} value={entry.value.hex()}")

reader.close()

Niskonivojski pristup CFB‑u

Čitajte i pretražujte bilo koji Compound File Binary kontejner koristeći CFBReader. Enumerišite storages i streams, razrešite putanje po imenu i izdvojite raw stream data za prilagođenu obradu.

from aspose.email_foss.cfb import CFBReader

reader = CFBReader.from_file("example-message.msg")

for entry in reader.iter_storages():
    print(f"Storage: {entry.name}")

for entry in reader.iter_streams():
    data = reader.get_stream_data(entry.stream_id)
    print(f"Stream: {entry.name} size={len(data)}")

reader.close()

Brzi početak

Instalirajte biblioteku i kreirajte svoj prvi MSG fajl u manje od deset redova:

pip install aspose-email-foss>=26.3
from aspose.email_foss import msg

message = msg.MapiMessage.create("Hello from Python", "This is a test message.")
message.set_property(msg.PropertyId.SENDER_EMAIL_ADDRESS, "sender@example.com")
message.add_recipient("recipient@example.com", display_name="Recipient")
message.save("hello.msg")

with msg.MapiMessage.from_file("hello.msg") as loaded:
    eml = loaded.to_email_message()
    print(eml["Subject"])

Podržani formati

FormatUvozIzvoz
MSGDaDa
CFBDaDa

Open Source i licenciranje

Aspose.Email FOSS for Python is released under the MIT License. Možete ga koristiti u ličnim, internim i komercijalnim projektima bez ograničenja. Izvorni kod je dostupan na GitHub.


Početak