How can I dynamically open a lotus notes email in java o any other programming lauguage

link|improve this question
Do you mean open the mail client, or access the contents of an email programmatically? – Jon McAuliffe Feb 9 at 21:30
Looks like a duplicate of stackoverflow.com/questions/9209244/…. – Per Henrik Lausten Feb 11 at 7:28
I have a list of email(breve description of the email) found by an enterprise search engine as hyperlink. I want when the user clicks on the link, lotus notes should be launch(open) the the user can see the content of the email. – user1199323 Feb 13 at 9:12
feedback

1 Answer

If notes is installed correctly, there should be a protocol handler for notes url's like notes://[SERVER]/[Replikaid]/[View]/[DocumentID]

If you only have the messageid, you could add a new view (byMessageID) into the mailbox with the first sorted column to the messageid field. The url would look like notes://server/replikaid/byMessageID/messageid?Opendocument

link|improve this answer
How can I get the documentId in java. What i hava as id for the email is something like this Message-ID: <CAO6mZPgGY2sY4ErqDsL+K2WyPBBKDCn92LS0xBVPgkkBd5S_ZA@mail.gmail.com> – user1199323 Feb 14 at 15:04
This id is from IMAP – user1199323 Feb 14 at 15:29
Search for it. Notesdatabase.search("$messageid=" & [imapid],nothing,0) – umeli Mar 21 at 13:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.