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
@@ -370,6 +370,7 @@ public class MailFetchingTests : IAsyncLifetime
var folderService = new FolderService(db, accountService);
var contactService = new ContactService(db);
var sentMailReceiptService = new SentMailReceiptService(db, folderService, accountService);
return new MailService(
db,
@@ -378,6 +379,7 @@ public class MailFetchingTests : IAsyncLifetime
accountService,
signatureService.Object,
mimeFileService.Object,
preferencesService.Object);
preferencesService.Object,
sentMailReceiptService);
}
}