From 8cde97635841007789afefaac0ab8f3257e2e3c9 Mon Sep 17 00:00:00 2001 From: Aleh Khantsevich Date: Sat, 6 Jul 2024 22:54:54 +0200 Subject: [PATCH] make CC/To/From to be mailto links --- Wino.Core/Services/MailService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wino.Core/Services/MailService.cs b/Wino.Core/Services/MailService.cs index 8b37874a..b53198b3 100644 --- a/Wino.Core/Services/MailService.cs +++ b/Wino.Core/Services/MailService.cs @@ -799,7 +799,7 @@ namespace Wino.Core.Services static string ParticipantsToHtml(InternetAddressList internetAddresses) => string.Join("; ", internetAddresses.Mailboxes - .Select(x => $"{x.Name ?? Translator.UnknownSender} <{x.Address ?? Translator.UnknownAddress}>")); + .Select(x => $"{x.Name ?? Translator.UnknownSender} <{x.Address ?? Translator.UnknownAddress}>")); } public async Task MapLocalDraftAsync(Guid accountId, Guid localDraftCopyUniqueId, string newMailCopyId, string newDraftId, string newThreadId)