Hi all
I want to open mail and the subject in another language
how can i do that?
this is the code
try {
String linkToBeOpen =
WDURLGenerator.getWebResourceURL(
wdComponentAPI.getComponent().getDeployableObjectPart(),
"mailto:"M"?subject=דוגמא");
IWDWindow window =
wdComponentAPI.getWindowManager().createNonModalExternalWindow(
linkToBeOpen,
"My window title");
window.show();
} catch (WDURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}