1

我正在编写一个程序,我可以在其中从三个不同的部门邮箱(每个使用自己的邮件服务器和 nsf 文件)发送邮件(使用 domino.dll)。所有三个部门邮箱都有一个预定义的邮件签名,例如

问候 X 部门

由于这些可以随时更改,我不想在我的程序中对签名进行硬编码,而是从邮箱/nsf 文件中提取它们并将其附加到邮件正文(或者如果有更好的方法的话)。

我整天都在寻找解决这个问题的方法,所以我的问题是:这是如何实现的?

到目前为止,我的代码与此类似:

public Boolean sendNotesMail(String messageText)
    {
        //Create new notes session 
        NotesSession _notesSession = new NotesSession();
        //Initialize Notes Database to null; 
        NotesDatabase _notesDataBase = null;
        //Initialize Notes Document to null; 
        NotesDocument _notesDocument = null;

        string mailServer = @"Path/DDB";
        string mailFile = @"Deparmentmail\number.nsf";

        //required for send, since its byRef and not byVal, gets set later. 
        object oItemValue = null;

        // Start the connection to Notes. Otherwise log the error and return false
        try
        {
            //Initialize Notes Session 
            _notesSession.Initialize("");
        }
        catch
        {
           //Log
        }

        // Set database from the mailServer and mailFile
        _notesDataBase = _notesSession.GetDatabase(mailServer, mailFile, false);

        //If the database is not already open then open it. 
        if (!_notesDataBase.IsOpen)
        {
            _notesDataBase.Open();
        }

        //Create the notes document 
        _notesDocument = _notesDataBase.CreateDocument();

        //Set document type 
        _notesDocument.ReplaceItemValue("Form", "Memo");

        //sent notes memo fields (To and Subject) 
        _notesDocument.ReplaceItemValue("SendTo", emailAddress);
        _notesDocument.ReplaceItemValue("Subject", subjectText);
        // Needed in order to send from a departmental mailbox
        _notesDocument.ReplaceItemValue("Principal", _notesDataBase.Title);

        //Set the body of the email. This allows you to use the appendtext 
        NotesRichTextItem _richTextItem = _notesDocument.CreateRichTextItem("Body");

        // Insert the text to the body 
        _richTextItem.AppendText(messageText);
        try
        {
            _notesDocument.Send(false, ref oItemValue);
        }

}

编辑:感谢 Richard Schwartz,我的解决方案是:

object signature = _notesDataBase.GetProfileDocument("calendarprofile", "").GetItemValue("Signature");
String[] stringArray = ((IEnumerable)signature).Cast<object>().Select(x => x.ToString()).ToArray();
_richTextItem.AppendText(stringArray[0]);
4

2 回答 2

3

签名存储在 NSF 文件的配置文件中。您可以使用该方法NotesDatabase.getProfileDocument()访问它。这个方法有两个参数:

ProfileName:需要查找签名的profile文件名称为“calendarprofile”。(是的,没错。它实际上是许多功能的通用配置文件,但是日历开发人员首先到达那里并为其命名。;-))

UniqueKey:将此保留为空字符串。(它传统上用于将用户名存储在共享数据库中的配置文件文档中,但不用于邮件文件的 calendarprofile 文档中。)

您访问配置文件文档中的数据的方式与在常规文档中访问它们的方式相同,例如,使用 getItem()、getItemValue() 等。对于简单的文本签名,您要查找的 NotesItem 称为“签名”。但是,我注意到还有名为“Signature_1”和“Signature_2”以及“SignatureOption”的项目。

如果您查看用于在 Notes 邮件中设置签名的首选项 UI,您将看到在简单文本和 HTML 或图形文件之间进行选择。毫无疑问,此选择将​​反映在 SignatureOption 项中,因此您可能需要先检查一下。如果您使用导入的 HTML 或图形文件,我尚未探索数据的去向,因此我无法确定它是否进入 Signature、Signature_1、Signature_2 或其他地方。但是您可以使用 NotesPeek 自行探索。你可以在这里下载. 它显示了 NSF 文件的树形视图。配置文件树有一个分支,您可以在那里找到日历配置文件。然后只需在 Notes 邮件首选项中使用不同的设置,看看有什么变化。(NotesPeek 不会即时获取更改。在 Notes 邮件首选项对话框中保存更改后,您必须关闭并重新打开 NotesPeek 中的配置文件才能查看更改。)

于 2013-01-11T17:42:13.453 回答
0

如果这变得太难了,并且您想要一个适用于所有邮件的标准解决方案,您可以考虑使用此产品或类似产品。

于 2013-01-12T10:47:15.607 回答