I successfully extracted the messages from my .pst but I wanted to keep the original format of the message (.msg). How can I keep the .msg format from the .pst and save to disk?
The help(pypff.message) doesn't expecify anything about.
import pypff
pst_file = './backup.pst'
opst = pypff.open(pst_file)
root = opst.get_root_folder()
for folder in root.sub_folders:
for message in folder.sub_messages:
print(message.subject)
I successfully extracted the messages from my .pst but I wanted to keep the original format of the message (.msg). How can I keep the .msg format from the .pst and save to disk? The help(pypff.message) doesn't expecify anything about.