从outlook中选择的邮件中提取附件?

时间:2013-05-16 06:47:48

标签: c# outlook-addin

在这里,我将创建一个Outlook添加,其中使用C#从Outlook中提取附件。

我在Outlook上使用添加ins和on_click事件放置了一个按钮,我在下面调用了这个方法;代码工作正常。它正在提取放在Outlook收件箱中的所有附件,但我只想要从鼠标中选择的附件。

任何人都可以帮我解决这个问题吗?

private void ThisApplication_NewMail()
{
  Outlook.MAPIFolder inBox = this.Application.ActiveExplorer().Session.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderInbox);
  Outlook.Items inBoxItems = inBox.Items;
  Outlook.MailItem newEmail = null;
  //inBoxItems = inBoxItems.Restrict("[Unread] = true");
  try
  {
    foreach (object collectionItem in inBoxItems)
    {
      newEmail = collectionItem as Outlook.MailItem;
      if (newEmail != null)
      {
        if (newEmail.Attachments.Count > 0)
        {
          for (int i = 1; i <= newEmail.Attachments.Count; i++)
          {
            newEmail.Attachments[i].SaveAsFile(@"C:\TestFileSave\" +
                                newEmail.Attachments[i].FileName);
          }
        }
      }
    }
  }
  catch (Exception ex)
  {
    string errorInfo = (string)ex.Message.Substring(0, 11);
    if (errorInfo == "Cannot save")
    {
      System.Windows .Forms . MessageBox.Show(@"Create Folder C:\TestFileSave");
    }
  }
}

3 个答案:

答案 0 :(得分:2)

创建 FormRegion 控件并将其插入到Outlook消息窗口中。

然后,当您单击收件箱中的邮件时,您可以使用以下命令获取邮件类:

private void FormRegionMessageClassArchivadoFactory_FormRegionInitializing(object sender, Microsoft.Office.Tools.Outlook.FormRegionInitializingEventArgs e)
            {

                Outlook.MailItem item = (Outlook.MailItem)e.OutlookItem;     
                 if (item.Attachments.Count > 0)
                 {
                                int attachRestantes = item.Attachments.Count;

                                for (int j = attachRestantes; j >=1; j--)
                                {
                                    //get attachments
                                }           

                 }     
            }

修改

要将附件内容作为字节获取,请使用以下代码。

 //microsoft schema to get the attachment content
 private string AttachSchema="http://schemas.microsoft.com/mapi/proptag/0x37010102";

  Outlook.PropertyAccessor pacc = item.Attachments[j].PropertyAccessor;
  byte[] filebyte = (byte[])pacc.GetProperty(AttachSchema);

答案 1 :(得分:0)

我会看看挂钩到Explorer.Selection更改事件: http://msdn.microsoft.com/en-us/library/office/ff869813.aspx

答案 2 :(得分:0)

您有关于查找所选电子邮件或在当前电子邮件中选择附件的问题吗?

我们在邮箱中提取所选的电子邮件,然后提示用户选择要以自定义形式保存的附件。以下是我们提取电子邮件用户选择的例程。

Outlook.Explorer curExplorer = OutlookApplication.ActiveExplorer();
Outlook.NameSpace curNameSpace = OutlookApplication.GetNamespace("MAPI");
Outlook.MAPIFolder curFolder = curExplorer.CurrentFolder;
if (curExplorer.Selection != null && curExplorer.Selection.Count > 0)
{
    // get mails
    _lstMailItems = new List<Outlook.MailItem>();
    try
    {
        foreach (Outlook.MailItem curMailItem in curExplorer.Selection)
        {
            // modification on mail items in plugin are repercuted in Outlook
            _lstMailItems.Add(curMailItem);
        }
    }
    catch (COMException exc)
    {
        // log, selected item is not an email.
    }
}