I'm having issues to extract inline images that are pasted in the email body if the emails are sent from external email (like gmail for example) into the Lotus notes.
The emails which are sent from Lotus Notes itself has no issues and I'm able to retrieve the inline images by using the document.generateXML()
method and parsing through <picture>
tag the stream.
My real concern is how to extract from the external emails (like gmail).
Session session = GetAwdNotesConnection.getAwdNotesSession();
Vector attachmentList=session.evaluate("@AttachmentNames", doc);
get images String xmlString= document..generateXML();
Using xml I can extract inline image are attached via lotus note email. appreciated for your help and time – Sarma