Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 58967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:55:53+00:00 2026-05-10T17:55:53+00:00

My company requires me to use Outlook for my E-mail. Outlook does virtually nothing

  • 0

My company requires me to use Outlook for my E-mail. Outlook does virtually nothing the way I want to do it and it frustrates me greatly. (I’m not trying to start a flame war here, it must do exactly what thousands of CEO’s want it to do, but I’m not a CEO.)

I would like to be able to automatically extract the thousands of E-mails and attachments currently in my Outlook account and save them in my own alternative storage format where I can easily search them and organize them the way I want. (I’m not requesting suggestions for the new format.)

Maybe some nice open source program already can do this… that would be great. Please let me know.

Otherwise, how can I obtain the message content and the attachments without going through the huge collection manually? Even if I could only get the message content and the names of the attachments, that would be sufficient. Is there documentation of the Outlook mail storage format? Is there a way to query Outlook for the data?

Maybe there is an alternative approach I haven’t considered?

My preferred language to do this is C#, but I can use others if needed.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:55:53+00:00Added an answer on May 10, 2026 at 5:55 pm

    Outlook Redemption is the best thing currently to use that I have found. It will allow you to get into the messages and extract the attachments and the message bodies. i am using it now to do just that.

    Here is some code I use in a class. I included the constructor and the processing function I use to save off the attachments. I cut out the code that is specific to my needs but you can get an idea of what to use here.

        private RDOSession _MailSession = new RDOSession();     private RDOFolder _IncommingInbox;     private RDOFolder _ArchiveFolder;     private string _SaveAttachmentPath;      public MailBox(string Logon_Profile, string IncommingMailPath,                     string ArchiveMailPath, string SaveAttPath)     {         _MailSession.Logon(Logon_Profile, null, null, true, null, null);         _IncommingInbox = _MailSession.GetFolderFromPath(IncommingMailPath);         _ArchiveFolder = _MailSession.GetFolderFromPath(ArchiveMailPath);         _SaveAttachmentPath = SaveAttPath;     } public void ProcessMail()         {              foreach (RDOMail msg in _IncommingInbox.Items)             {                 foreach (RDOAttachment attachment in msg.Attachments)                 {                     attachment.SaveAsFile(_SaveAttachmentPath + attachment.FileName);                     }                 }                 if (msg.Body != null)                 {                     ProcessBody(msg.Body);                 }              }          } 

    edit: This is how I call it and what is passed

    MailBox pwaMail = new MailBox('Self Email User', @'\\Mailbox - Someone\Inbox',                               @'\\EMail - Incomming\Backup', @'\\SomePath'); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The context: We’re a small company that does not have an Exchange Server (or
I know classes should be defined in hpp files. Company convention requires me to
If a company has developed a framework for doing almost everything their business requires,
My company doesn't use Apache, so we've spun up our own socket code. In
I'm a developer in a large company that has some legacy code that requires
My company is required to use an application developed in ASP.NET by another company.
I work at a company where some require justification for the use of an
Just got a new website project for my company internal use. The whole website
I'm about to start a project that requires XML messages to be sent between
I've developed a Maven reporting plugin for internal use at our company. It's designed

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.