Add read receipt tracking for sent mail

This commit is contained in:
Burak Kaan Köse
2026-04-11 21:02:51 +02:00
parent d5c121ce24
commit 230039cb57
29 changed files with 690 additions and 21 deletions
@@ -230,6 +230,7 @@ public class MailThreadingTests : IAsyncLifetime
var folderService = new FolderService(db, accountService);
var contactService = new ContactService(db);
var sentMailReceiptService = new SentMailReceiptService(db, folderService, accountService);
return new MailService(
db,
@@ -238,6 +239,7 @@ public class MailThreadingTests : IAsyncLifetime
accountService,
signatureService.Object,
mimeFileService.Object,
preferencesService.Object);
preferencesService.Object,
sentMailReceiptService);
}
}