Search
Follow Us
Categories
- Success Stories(157)
Archives
Author Archives: Saqib Razzaq
Access Notes Information from MS Outlook PST Files with Aspose.Network for .NET
We are pleased to announce the release of a new version of Aspose.Network for .NET v5.8. API for accessing Notes information from Outlook PST has been added in this version. You can get the list of notes in a collection and get subject, body, creation date, color etc of each individual note.
… Continue Reading
Sample code to get all notes from PST:
// load the Outlook PST file
string strBaseFolder = @”C:\Emails\”;
string strPSTFile = @”PersonalFolders.pst”;
PersonalStorage pst = PersonalStorage.FromFile(strBaseFolder + strPSTFile);
string strBaseFolder = @”C:\Emails\”;
string strPSTFile = @”PersonalFolders.pst”;
PersonalStorage pst = PersonalStorage.FromFile(strBaseFolder + strPSTFile);
Posted in Aspose.Email Product Family
Access MS Exchange Server Public Folders using Aspose.Network for .NET
We are pleased to announce the release of a new version of Aspose.Network for .NET v5.7. We added support for reading Public Folders from Microsoft Exchange Server and downloading messages from folders/sub-folders. Below is the simple C# code for getting the list of all public folders: // Connect to Exchange Server.
NetworkCredential credential = new NetworkCredential(username, password, domain);
ExchangeWebServiceClient client = new ExchangeWebServiceClient(mailboxURI, credential);
// Get list of public folders
ExchangeFolderInfoCollection folders = client.ListPublicFolders();
// Display folder name and sub-folder
… Continue Reading Posted in Aspose.Email Product Family
MSG and PST Feature Improvements in Aspose.Network for .NET
We recently released a new version of Aspose.Network for .NET v5.6. Several MSG and PST related features were improved in this version, including addition of EntryID property for messages and folders in PST file, some bug fixes while extracting messages from PST, handling non-English characters in EML to MSG conversion etc.
Please visit http://www.aspose.com/community/files/51/.net-components/aspose.network-for-.net/entry256187.aspx for release notes and download.
… Continue Reading Posted in Aspose.Email Product Family
Aspose.Network for .NET supports accessing Outlook Contacts Information from PST file
We have recently released a new version of Aspose.Network for .NET v5.5. It now supports accessing Contacts information from PST files and saving a contact to disk in MSG format.
… Continue Reading
Sample code:
// load the Outlook PST file
PersonalStorage pst = PersonalStorage.FromFile(@”Outlook-File.pst”);
// Get the Contacts folder
FolderInfo folderInfo = pst.GetFolder(“Contacts”);
// loop through all the contacts in this folder
MessageInfoCollection messageInfoCollection = folderInfo.GetContents();
foreach (MessageInfo messageInfo in messageInfoCollection)
{
// Get the contact information
PersonalStorage pst = PersonalStorage.FromFile(@”Outlook-File.pst”);
// Get the Contacts folder
FolderInfo folderInfo = pst.GetFolder(“Contacts”);
// loop through all the contacts in this folder
MessageInfoCollection messageInfoCollection = folderInfo.GetContents();
foreach (MessageInfo messageInfo in messageInfoCollection)
{
// Get the contact information
Posted in Aspose.Email Product Family