我想從xPages發送電子郵件。我創建了一個測試按鈕,添加一個簡單的動作「發送郵件」來了,但是當我點擊它發送測試電子郵件,我得到這個運行時錯誤:在xpages中發送MIME郵件運行時錯誤時出錯
Exception
Error sending MIME mail
我試圖用這個SSJS電子郵件發送太:
var doc:NotesDocument = database.createDocument();
doc.replaceItemValue("form", "Memo");
doc.replaceItemValue("sendTo", "[email protected]");
doc.replaceItemValue("subject", "hi there!");
doc.replaceItemValue("body", "content here");
doc.send();
,但我得到這個運行時錯誤:
Error while executing JavaScript action expression Script interpreter error, line=6, col=5: [TypeError] Exception occurred calling method NotesDocument.send() null
我會感謝你的幫助。
謝謝
請在服務器上檢查您的XPages日誌文件以獲取錯誤背後的詳細信息,並告訴我們。爲便於訪問日誌文件,請使用OpenNTF的XPage日誌文件讀取器 – 2014-09-21 06:11:56