Hello,
Is it any way that someone could force (statically or programatically) a save into Sent Items of the mailbox from which the message is sent for each sent message.
A type of replacing:
public void Send(){
this.InternalSend(null, MessageDisposition.SendOnly);
}
with
public void Send(){
this.InternalSend(new FolderId(WellKnownFolderName.SentItems), MessageDisposition.SendAndSaveCopy);
}
on Exchange server on-premises ... or better, even in the cloud if possible ??
Thank you,
Sever