We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
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.
The text was updated successfully, but these errors were encountered:
That's not good. Do you have a sample .msg for me to debug?
Sorry, something went wrong.
I've send you an email containing a sample .msg.
#241: distinguish properly between TO, CC and BCC recipients when con…
9e739cd
…verting from Outlook messages
Bug is fixed, waiting for additional test data. /edit: data received
#241: Fixed how Outlook TO, CC and BCC are handled [skip ci]
f10508e
Fixed in 6.0.0-rc3.
6.0.0 has released as well, finally.
bbottema
No branches or pull requests
I'm currently using v6.0.0-rc2.
When converting an Outlook .msg file to Email like this
the list of recipients contains every 'cc' entry also as a 'to' entry. For example if I have an Email like this
the list of recipients contains three entries,
instead of the expected two.
The text was updated successfully, but these errors were encountered: