0

在我的应用程序的某些文档中,我有一个按钮,可以将带有文档的电子邮件发送到输入字段中的任何电子邮件。

它起作用了,但是由于某种原因,我不知道为什么,它不再起作用了。

这是我在按钮 onClick 方法中的 SSJS:

if(docInfo.isNewNote()){
        docInfo.save();
    }
    var thisdoc = docInfo.getDocument(true);
    var tempdoc = database.createDocument();
    tempdoc.replaceItemValue("Form", "Memo");
    tempdoc.replaceItemValue("SendTo", thisdoc.getItemValue("Destinatar"));
    tempdoc.replaceItemValue("Subject", "Title");
    var tempbody:NotesRichtextItem = tempdoc.createRichTextItem("Corp");


    thisdoc.save(true,true);
    tempbody.appendText("Some text:")
    tempbody.addNewLine(2);
    tempbody.appendText(facesContext.getExternalContext().getRequest().getRequestURL().toString() + 
              "?action=readDocument&documentId=" + thisdoc.getUniversalID());
    tempdoc.send();
    thisdoc.recycle();
    tempbody.recycle();
    tempdoc.recycle();

出于某种原因,我收到一个错误tempdoc.send()消息:

Error while executing JavaScript action expression
Script interpreter error, line=21, col=17: [TypeError] Exception occurred calling method NotesDocument.send() null
4

1 回答 1

2

值得检查 sendTo 是否有值。这是doc.send()失败的常见原因。

于 2014-11-12T09:07:40.547 回答