-
-
Notifications
You must be signed in to change notification settings - Fork 274
Closed
Description
I'm currently using v6.0.0-rc2.
When converting an Outlook .msg file to Email like this
//ByteArrayInputStream
Email email = EmailConverter.outlookMsgToEmail(stream));
List<Recipient> recipients = email.getRecipients()
the list of recipients contains every 'cc' entry also as a 'to' entry. For example if I have an Email like this
To: support@company.com
Cc: teamleadSupport@company.com
the list of recipients contains three entries,
[{
address = 'support@company.com',
type = 'To'
},
{
address = 'teamleadSupport@company.com',
type = 'To'
},
{
address = 'teamleadSupport@company.com',
type = 'Cc'
}]
instead of the expected two.