我想从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