在c#中为outlook开发电子邮件跟踪插件

时间:2014-12-05 15:35:47

标签: c# plugins outlook-addin

我想在c#中为outlook开发电子邮件跟踪插件,我可以创建插件但不知道如何使用c#跟踪从我的Outlook发送的电子邮件,请分享任何参考博客或代码。  我为outlook创建了简单的hello world插件

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Outlook = Microsoft.Office.Interop.Outlook;
using Office = Microsoft.Office.Core;


namespace MyAddin
{
public partial class ThisAddIn
{
    private Office.CommandBar _objMenuBar;
    private Office.CommandBarPopup _objNewMenuBar;
    //private Outlook.Inspector Inspectors;
    private Office.CommandBarButton _objButton;
    private string menuTag = "MyMenu";
    Outlook.Inspectors inspectors;
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    {
        this.MyMenuBar();
        //Inspectors = this.Application.Inspectors;
        inspectors = this.Application.Inspectors;
        inspectors.NewInspector +=
        new Microsoft.Office.Interop.Outlook.InspectorsEvents_NewInspectorEventHandler(Inspectors_NewInspector);

    }

    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    {
    }

    void Inspectors_NewInspector(Microsoft.Office.Interop.Outlook.Inspector Inspector)
    {
        Outlook.MailItem mailItem = Inspector.CurrentItem as Outlook.MailItem;
        if (mailItem != null)
        {
            if (mailItem.EntryID == null)
            {
                mailItem.Subject = "This text was added by using code";
                mailItem.Body = "This text was added by using code";
            }

        }
    }

    private void MyMenuBar()
    {
        this.ErsMyMenuBar();

        try
        {
            _objMenuBar = this.Application.ActiveExplorer().CommandBars.ActiveMenuBar;
            _objNewMenuBar = (Office.CommandBarPopup)
                             _objMenuBar.Controls.Add(Office.MsoControlType.msoControlPopup
                                                    , missing
                                                    , missing
                                                    , missing
                                                    , false);

            if (_objNewMenuBar != null)
            {
                _objNewMenuBar.Caption = "my Plugin";
                _objNewMenuBar.Tag = menuTag;
                _objButton = (Office.CommandBarButton)_objNewMenuBar.Controls.
                Add(Office.MsoControlType.msoControlButton, missing,
                    missing, 1, true);
                _objButton.Style = Office.MsoButtonStyle.
                    msoButtonIconAndCaption;
                _objButton.Caption = "my Plugin";
                //Icon 
                _objButton.FaceId = 500;
                _objButton.Tag = "ItemTag";
                //EventHandler
                _objButton.Click += new Office._CommandBarButtonEvents_ClickEventHandler(_objButton_Click);
                _objNewMenuBar.Visible = true;
            }
        }
        catch (System.Exception ex)
        {
            System.Windows.Forms.MessageBox.Show("Error: " + ex.Message.ToString()
                                               , "Error Message");
        }

    }


    #region VSTO generated code
    private void InternalStartup()
    {
        this.Startup += new System.EventHandler(ThisAddIn_Startup);
        this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    }
    #endregion

    #region "Event Handler"
    #region "Menu Button"

    private void _objButton_Click(Office.CommandBarButton ctrl, ref bool cancel)
    {
        try
        {
            System.Windows.Forms.MessageBox.Show("Hello World");
        }
        catch (System.Exception ex)
        {
            System.Windows.Forms.MessageBox.Show("Error " + ex.Message.ToString());
        }
    }

    #endregion

    #region "Remove Existing"

    private void ErsMyMenuBar()
    {
        // If the menu already exists, remove it.
        try
        {
            Office.CommandBarPopup _objIsMenueExist = (Office.CommandBarPopup)
                this.Application.ActiveExplorer().CommandBars.ActiveMenuBar.
                FindControl(Office.MsoControlType.msoControlPopup
                          , missing
                          , menuTag
                          , true
                          , true);

            if (_objIsMenueExist != null)
            {
                _objIsMenueExist.Delete(true);
            }
        }
        catch (System.Exception ex)
        {
        System.Windows.Forms.MessageBox.Show("Error: " + ex.Message.ToString(), "Error Message");
        }
    }
    #endregion
    #endregion
}

}

1 个答案:

答案 0 :(得分:0)

我看到你在代码中使用了命令栏。从Office 2007开始,使用新UI。自Office 2010以来,命令栏已被弃用。您需要使用Fluent UI(也称为Ribbon UI)。您可以在以下系列文章中阅读有关新UI的更多信息:

跟踪电子邮件有多种方式:

  1. 添加自定义属性。这不是最好的方式,因为财产可以消失。
  2. 使用Outlook项目的Conversation * -like(* Id + * Index)属性。 Outlook使用这些属性对会话中的相关项进行分组。
  3. 明确地将您的ID添加到主题行。
  4. 由你决定选择......