zoukankan      html  css  js  c++  java
  • [Domino]Java访问Domino邮件代码片断[2]

     

    [Domino]Java访问Domino邮件代码片断[2]

    编写者

    日期

    关键词

    郑昀@ultrapower

    2005-6-21

    Java Domino

     

    回复用户收件箱中的某一封邮件

    2个知识点:

    1:需要通过noteID来定位该邮件:

    Database dbMail = sNotes.getDatabase(sNotes.getServerName(),

                          mailfile, false);

    Document doc = dbMail.getDocumentByID(noteid);

    2:通过DocumentcreateReplyMessage方法创建回复邮件。

    代码片段:

    Database dbMail = sNotes.getDatabase(sNotes.getServerName(),

                          mailfile, false);

    Document doc = dbMail.getDocumentByID(noteid);

    if (doc != null)

    {

                           /* createReplyMessage的参数说明

                            * boolean toall

                            If true, the new document recipient list contains all the

                            recipients of the original. If false, the new document

                            recipient list contains only the sender of the original.

                            */

                           Document reply = doc.createReplyMessage(false);

     
                           Item itemSubject = doc.getFirstItem("Subject");
                              String strItemRe = "回复:" + itemSubject.getText();
                           reply.replaceItemValue("Subject",
                                   strItemRe);

                        reply.replaceItemValue("Body",

                               body);

                        reply.send(doc.getItemValueString("From"));

    }

     

    编写者

    日期

    关键词

    郑昀@ultrapower

    2005-6-21

    Java Domino

     

  • 相关阅读:
    快速查询 jsp页面 和 js方法
    order by 特定字段放在特定的位置
    eclipse中将java项目变成web项目
    Eclipse导入项目:No projects are found to import
    解决【Tomcat version 6.0 only supports J2EE 1.2, 1.3, 1.4, and Java EE 5 Web modul】报错问题
    ORA-24247:网络访问被访问控制列表(ACL)拒绝器
    Oracle 使用UTL_HTTP发送http请求--转载
    Oracle ACL (Access Control List) 详细介绍
    PLSQL中&符号处理
    windows oracle11gR2安装使用
  • 原文地址:https://www.cnblogs.com/zhengyun_ustc/p/178255.html
Copyright © 2011-2022 走看看