摘要:
回复用户收件箱中的某一封邮件
2个知识点:
1:需要通过noteID来定位该邮件:
Database dbMail = sNotes.getDatabase(sNotes.getServerName(),
mailfile, false);
Document doc = dbMail.getDocumentByID(noteid);
2:通过Document的createReplyMessage方法创建回复邮件。 阅读全文