编程语言
首页 > 编程语言> > 在Lotus Notes中使用C#将电子邮件另存为eml

在Lotus Notes中使用C#将电子邮件另存为eml

作者:互联网

我需要将Lotus Notes电子邮件导出(保存到)硬盘.
我想出了如何将附件保存到HDD的方法,但是我想不出如何保存整个电子邮件的方法.

下面的代码显示了我如何导出附件.您能建议我如何修改它以保存电子邮件吗?
PS-我是编程新手.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Domino;
using System.Collections;

namespace ExportLotusAttachments
{
  class Class1
  {
    public void ScanForEmails()
    {
      String textBox1 = "c:\\1";
      NotesSession session = new NotesSession();
      session.Initialize("");
      NotesDbDirectory dir = null;
      dir = session.GetDbDirectory("");
      NotesDatabase db = null;
      db = dir.OpenMailDatabase();
      NotesDatabase NDb = dir.OpenMailDatabase(); //Database connection

      //ArrayList that will hold names of the folders
      ArrayList LotusViews2 = new ArrayList(); 

      foreach (NotesView V in NDb.Views)
      {
        if (V.IsFolder && !(V.Name.Equals("($All)")))
        {
          NotesView getS = V;
          LotusViews2.Add(getS.Name);
        }
      }

      foreach (String obj in LotusViews2)
      {
        NotesDocument NDoc;
        NotesView nInboxDocs = NDb.GetView(obj);
        NDoc = nInboxDocs.GetFirstDocument();
        String pAttachment;

        while (NDoc != null)
        {
          if (NDoc.HasEmbedded && NDoc.HasItem("$File"))
          {
            object[] AllDocItems = (object[])NDoc.Items;
            foreach (object CurItem in AllDocItems)
            {
              NotesItem nItem = (NotesItem)CurItem;
              if (IT_TYPE.ATTACHMENT == nItem.type)
              {
                String path = textBox1;
                pAttachment = ((object[])nItem.Values)[0].ToString();

                if (!System.IO.Directory.Exists(path))
                {
                  System.IO.Directory.CreateDirectory(textBox1);
                }

                try
                {
                  NDoc.GetAttachment(pAttachment).ExtractFile(@path + pAttachment);
                }
                catch { }
              }
            }
          }
          NDoc = nInboxDocs.GetNextDocument(NDoc);
        }
      }
    }
  }
}

解决方法:

Bob BabalanThis帖子解释了如何使用Java导出Lotus文档.相同的原理应该在C#或VB中起作用.该文档将转换为MIME并写入磁盘.

或在8.5.3版(我认为它始于8.5.1版)中,您只需将其从邮件文件拖放到文件系统中即可.

标签:lotus-notes,export,eml,c
来源: https://codeday.me/bug/20191202/2085014.html