English

Working with Password-Protected PST files using C# .NET

A Personal Folders File (.pst)] is an Outlook data file that stores your messages and other items on your computer. This is the most common file in which information in Outlook is saved. Some Outlook users like to keep their PST files password protected to ensure the possibility of snooping to zero. In this article, we will learn how to work with password protected pst files in C# .NET.
November 3, 2022 · 3 min · Dmitrysamodurov

Group Messages from PST by Conversation Threads using C# .NET

A Conversation Thread is a sequence of replies to a message with a common thread topic. Messages within conversation can be displayed in various ways, such as in hierarchical or chronological order. To display a message thread email applications identify message replies. The most popular e-mail file formats provide this feature. Conversation threads allow readers to understand the overall structure of a conversation quickly, highlight certain points of conversations, and analyze important information.
July 29, 2022 · 4 min · Dmitrysamodurov

Read MS Outlook PST Files in C# .NET

PST (Personal Storage Table) is a storage file format that is used by different Microsoft programs such as MS Outlook, Exchange, and Windows Messaging. PST files are capable of storing messages, contacts, calendars, events, etc. In certain cases, you may need to parse a PST file and extract data from it programmatically. To achieve that, this article shows how to read MS Outlook PST files using C# .NET. Particularly, you will learn how to extract folders’ information, read emails and fetch contacts from a PST file.
March 25, 2022 · 3 min · Usman Aziz