I am trying to modify a Mailitem's category. First, I set
mail.Categories = ""; mail.Save();
Then at some later point, I set the following:
mail.Categories = "Red Category"; mail.Save();
This works most of the time, but sometimes the old category is stale in the messages pane, while the category displayed in the message is correct. If I right-click, only the Red Category is applied as it should. Is there a reason I am experiencing this inconsistency?