We have some customers who uses Microsoft Outlook to send attachments. However in odoo we see only winmail.dat
files (while everything looks ok in mail client).
Is there any way to force odoo to expose winmail.dat
content?
We have some customers who uses Microsoft Outlook to send attachments. However in odoo we see only winmail.dat
files (while everything looks ok in mail client).
Is there any way to force odoo to expose winmail.dat
content?
The problem is that Microsoft Outlook uses Transport Neutral Encapsulation Format and packs all attachments in one file.
There is a good python parser for tnef format -
tnefparse
. I'd suggest you to use it and write simple module to extendmail.thread
model like thisYou can find more information on how to do custom modules here.