I'm using Redemption to interact with Outlook emails in C#. Do I need to call RDOMail.Save
after setting a value to RDOMail.Fields
?
rdoMail.Fields["MyProperty"] = "MyValue";
rdoMail.Save(); // not sure if this is necessary
During my testing, it seems that even If I don't call the save method, my custom property value was able to be loaded out later by accessing rdoMail.Fields["MyProperty"]
again. But I can't be sure that this is 100% the case. Outlook always seems a bit moody to me :P
I'd also like to know if this custom property value would be persisted if I save the email to a .msg file using Outlook.