Hello
When saving Mime Eml (and Mht, also Emlx) it can be saved in 2 ways, that other email clients open it as read-only/sent or editable/unsent mode.
I think it depens on X-Unsent tag.
Which SaveOption in Eml/Mht/Emlx controls this behavior?
Thanks.
Hello,
Use MailMessage.IsDraft property before saving.
eml.IsDraft = true;
1 Like
Hello and thanks for the tip.
I noticed that there’s no equivalent property for MapiMessage?
Because it is different than IsTemplate which is Oft.
How was that to save a editable for MapiMessage?
Thanks.
For MapiMessage:
mapiMsg.SetMessageFlags(MapiMessageFlags.MSGFLAG_UNSENT);