我想从 xPages 发送电子邮件。我创建了一个测试按钮并向其添加了一个简单的操作“发送邮件”,但是当我单击它发送测试电子邮件时,我收到了这个运行时错误:
异常
发送 MIME 邮件时出错
我也尝试使用此 SSJS 发送电子邮件:
var doc:NotesDocument = database.createDocument();
doc.replaceItemValue("form", "Memo");
doc.replaceItemValue("sendTo", "daniel.recio@slug.es");
doc.replaceItemValue("subject", "hi there!");
doc.replaceItemValue("body", "content here");
doc.send();
但我得到了这个运行时错误:
执行 JavaScript 动作表达式时出错脚本解释器错误,line=6,col=5:[TypeError] 调用方法 NotesDocument.send() 时发生异常 null
我会感谢你的帮助。
谢谢