Reputation: 1
I am new to IBM Lotus Notes. We had a requirement where below things are to be done:
I am a java developer. Please advice me can we achieve using the java knowledge by developing any custom plugin and invoking that using lotus script. Is there any approach which we can look into?
Thanks, Vijay
Upvotes: 0
Views: 219
Reputation: 1492
For (1) and (2), you have to modify the default Notes Mail Template (add the button and the code) using the Domino Designer and roll it out to all users (consult with your local Notes Admin and Developer).
The code (req. 2) executed by the button (req. 1) is usually written in either Lotus Notes Formula Language or Lotusscript, depending on the requirements. Taking your req. 4 into account, that should be Lotusscript.
Req. 3: In what format? RichText, EML, doc, ...? Google provides several solutions for that.
Regarding Requirement 4, see Julian's blog entry Learning How to Call the Notes API from LotusScript
I would not recommend to implement the functionality in Java and call it via LS2J, as this "solution" has quite a few pitfalls (You can only pass primitive data types to a Java function from LS, memory management issues, etc.).
AFAIK this is not doable as a "Sidebar Plugin" to Notes.
Upvotes: 2