接收带有正文中的图像和附件MULE的HTML邮件时为空负载

时间:2019-01-12 20:44:01

标签: mule-esb

我正在使用imap连接器,在所有情况下都可以正常工作,但是当一封电子邮件中带有图像和附件的附件时,我从imap侦听器中获取了空的有效负载。 如果我发送的电子邮件中包含图片,但没有附件,则该图片将另存为单独的文件,而内容另存为单独的文件。

有人遇到过同样的问题吗?有人可以提供解决方法吗?

在imap连接器中甚至尝试过key_to_search = input() #not raw_input() since its python 3 with open("fileOfWords.txt") as enter: for line in enter: if line.lower().startswith(key_to_search.lower()): print(key_to_search + " is in the dictionary") 都无法正常工作

disableTransportTransformer="true

电子邮件正文应通过

提取

1 个答案:

答案 0 :(得分:0)

图像可能是另一个附件,而不是身体。尝试遍历附件并记录有关消息的信息以确认消息:

<foreach collection="#[message.inboundAttachments]" doc:name="ForEach">
   <logger />
</foreach>