Mule need to poll the bounce emails from office 365 to detect if it is a hard bounce or soft bounce . When polling from imap connector mule is returning only subject and headers but returning body as empty with mimeType =multipart/report . Could you Please is there any way we can parse the body in case of bounce mails using imap connector .
Asked
Active
Viewed 44 times
0
-
Is this Mule 3 or Mule 4? If Mule 4, which version of the connector? – aled Sep 04 '19 at 23:51
-
mule 3 we are using – hm510 Sep 05 '19 at 17:13
-
"The" body does not exist when there is a multipart/anything. There will be several parts. You need to find the right part, usually the second, and parse it. – arnt Sep 05 '19 at 19:38
-
is there any way how we can parse the multipart in mule and try to find the body in it .I tried with differrent transformer like email to string using encoding utf=8 but still doe not work – hm510 Sep 06 '19 at 08:00