mirror of
				https://github.com/Kopano-dev/kopano-ol-extension.git
				synced 2023-10-10 11:37:40 +00:00 
			
		
		
		
	[KOE-23] Fixed for multiple BCC recipients
This commit is contained in:
		| @@ -80,9 +80,12 @@ namespace Acacia.Features.BCC | ||||
|             { | ||||
|                 using (IRecipients recipients = mail.Recipients) | ||||
|                 { | ||||
|                     using (IRecipient recip = CreateRecipient(recipients, decoded)) | ||||
|                     foreach (string entry in decoded.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.None)) | ||||
|                     { | ||||
|                         recip.Type = MailRecipientType.BCC; | ||||
|                         using (IRecipient recip = CreateRecipient(recipients, entry)) | ||||
|                         { | ||||
|                             recip.Type = MailRecipientType.BCC; | ||||
|                         } | ||||
|                     } | ||||
|                 } | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user