Mule ESB - 如何获取 MimeMessage 而不是 MimeBodyPart?
我正在尝试获取 Mule ESB 中的 FROM 电子邮件地址。
我将检索到的对象作为 MimeBodyPart,我想要使用 MimeMessage。如何做到这一点?
任何解决方案 - 无论是 Mule 还是 Java 都是受欢迎的。
入站端点的 Mule 配置部分如下 -
<inbound>
<pop3s:inbound-endpoint user="xxx%40gmail.com" password="xxx" host="pop.gmail.com"/>
</inbound>
提前致谢。
I'm trying to get the FROM email address in Mule ESB.
I'm getting the retrieved object as MimeBodyPart, I'd like to have MimeMessage instead. How to do this?
Any solution - either in Mule or Java is welcome.
The Mule config part for inbound end-point is as below -
<inbound>
<pop3s:inbound-endpoint user="xxx%40gmail.com" password="xxx" host="pop.gmail.com"/>
</inbound>
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是这样的 -
初始 obj 由 Mule 提供。
The solution is this -
The initial obj is provided by Mule.