Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://www.dimastr.com/redemption/" rel="noreferrer">Outlook Redemption</a> 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.</p> <p>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.</p> <pre><code> 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); } } } </code></pre> <p><strong>edit:</strong> This is how I call it and what is passed</p> <pre><code>MailBox pwaMail = new MailBox("Self Email User", @"\\Mailbox - Someone\Inbox", @"\\EMail - Incomming\Backup", @"\\SomePath"); </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload