我是XPages的新手。 我为XPage中的按钮onclick事件编写了一个SSJS脚本来发送电子邮件。但是在我点击按钮后,页面显示"错误500 HTTP Web服务器:命令未处理异常"。
但是如果我在笔记本客户端打开这个XPage并单击按钮,那么一切都很顺利。所以这让我很困惑。
任何人都知道如何解决这个问题?非常感谢!!!
以下是我的SSJS代码:
var mailAddress="yu/auto@sys";
var currDB:NotesDatabase=session.getCurrentDatabase();
var mailDoc:NotesDocument=currDB.createDocument();
var currDoc = document1.getDocument();
var bodyRt:NotesRichTextItem=mailDoc.createRichTextItem("Body");
var RTELEM_TYPE_TABLECELL =7;
bodyRt.appendTable(1,1);
bodyRt.appendDocLink(currDoc, "Link to the document");
bodyRt.update();
mailDoc.replaceItemValue("Form","Memo");
mailDoc.replaceItemValue("SendTo",mailAddress);
mailDoc.replaceItemValue("Subject","hello");
mailDoc.send();