In my web application created with spring mvc, I am having a feature like, i am having a page with a message and a send hyperlink, on clicking the send link it should open a ibm lotus notes new message window, with the message copied along with to, cc, subject details dynamically like as shown in the picture.
Note: The lotus notes will be always running and logined within all the client systems.
I have tried to achieve this first by using mailto: HTML e-mail link feature, but got worked only in chrome and firefox, in IE it failed
Is there any way to achieve this by using java
My code is as given below
html
<div ng-app='myApp' ng-controller="Controller">
<b>Message :</b> {{message}}
<br>
<a href="mailto:manu?cc=jacob&subject=Test%20Mail&body={{message}}">Send</a>
</div>
script
var app = angular.module('myApp', []);
app.controller('Controller', function ($scope) {
$scope.message = 'sample sample sample test message';
});
Main Page Screen
Lotus notes new message when clicking the send hyperlink