在lotusscript中,我通常会执行以下操作来创建一个简单的电子邮件,其中包含指向注释数据库/视图的链接。有什么方法可以修改链接(appenddoclink),以便它打开一个xpage?假设我的xpage名称是“Staff_Page”。
Dim maildoc As NotesDocument, rtitem As NotesRichTextItem
Set maildoc=New NotesDocument(db)
maildoc.subject="Email Address(s) For Your Approval"
Set rtitem=New NotesRichTextItem(maildoc, "Body")
Call rtitem.Appendtext("Dear John,")
Call rtitem.Addnewline(2)
Call rtitem.Appenddoclink(db, "", "Click to open the XPage.")
Call maildoc.Send(False, "john@mail.com")
我查看了XPages URL Cheat Sheet,但那些不是lotusscript。我正在用一些lotusscript代理做XPiNC。
答案 0 :(得分:4)
最简单的方法是在表单属性中指定“打开xpage” 第二个选项是使用href = notes:// server / ....指定指向它的URL链接。 你可能最好使用mime邮件(在OpenNTF上使用mip邮件),因为你有更简单的格式化选项