I send a MailKit.Message Async with the MailKit.Net.Smtp.SmtpClient.
Then i put the Mail in the send Folder, but the Message Flag is Unseen.
I can't set the messageflag in Message build, only after Append, but i found no way to convert the MailKit.UniqueId? to MailKit.UniqueId.
var folderSend = IC.GetFolder(MailKit.SpecialFolder.Sent);
MailKit.UniqueId? te = folderSend.Append(nochmalMessage);
folderSend.AddFlagsAsync(te, MailKit.MessageFlags.Seen, true);
te must be MailKit.UniqueId