Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Apologies if this has already been answered effectively but I have been unable to find a solution.

I am writing an Outlook 2010 addin that will append information to emails. The following is a cut-down version of the code I'd like to deploy:

 public partial class ThisAddIn
{
    Outlook.Inspectors inspectors;

    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    {
        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)
            {

                if (mailItem.Body == null)
                {
                    //New item - use a new signature
                    mailItem.HTMLBody = "This is a new mail";
                }
                else
                { 
                    //this is a response or a forward
                    string hh = mailItem.HTMLBody;
                    mailItem.HTMLBody = "This is not a new mail <br/>" + hh;
                }
            }

        }
    }

}

While this is fine for any email created using the 'New' button, for any kind of response or forward, the Inspector.CurrentItem object seems to be set to the mailitem that is being replied to and not the new mail.

Any help would be greatly appreciated.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.