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.