I'm trying to store some data in the user properties, then write the mail to a .msg file, and (later) reload the .msg file to read the user property.
The problem is: after reloading the file, I don't have any user property any more.
I'm using Outlook 2010 32 bit
Here is a piece of code that show the behaviour:
Outlook.MailItem originalItem = ((MailItemWrapper)this.Item)._item;
var path = System.IO.Path.GetTempFileName() + ".msg";
var propName = "ActionId123456789";
// Set a user property "ActionId" with value "test"
var ps = originalItem.UserProperties;
var p = ps.Find(propName);
if (p == null)
p = ps.Add(propName, Outlook.OlUserPropertyType.olText, Type.Missing);
p.Value = "test";
// Save to a temp file
originalItem.Save(); // --> I also tried without this line
originalItem.SaveAs(path);
// Chech the the property is correctly set
p = originalItem.UserProperties[propName];
if (p != null)
Console.WriteLine(p.Value); // ---> Show 'test'
// Open the temp file
Outlook.MailItem newItem = AddinModule.CurrentInstance.OutlookApp.Session.OpenSharedItem(path) as Outlook.MailItem;
// Check that the property still exists
p = newItem.UserProperties[propName];
if (p != null)
Console.WriteLine(p.Value); // ---> Not executed: p is NULL !
Does someone know how to do this ?
Instead of using OpenSharedItem
, I also tried opening the mail using Process.Start
, but in this case the user property is also null ...
BTW this piece of code is a test sample, so it doesn't dispose
properly all COM references.