3
我使用的是Interop.Domino.dll,能够通过C#代码发送邮件给lotus notes 8.5用户。 现在我想通过C#代码向用户发送预约调用。通过c发送预约邀请到lotus notes 8.5客户端#
这是我的代码。
oNotesDocument.ReplaceItemValue("Form", "Appointment");
oNotesDocument.ReplaceItemValue("AppointmentType", "3"); // meeting
oNotesDocument.ReplaceItemValue("Subject", "Deneme Toplantı");
oNotesDocument.ReplaceItemValue("CALENDARDATETIME", StartDate);
oNotesDocument.ReplaceItemValue("StartDateTime", StartDate);
oNotesDocument.ReplaceItemValue("EndDateTime", EndDate);
oNotesDocument.ReplaceItemValue("StartDate", StartDate);
//oNotesDocument.ReplaceItemValue("MeetingType", "1");
oNotesDocument.ReplaceItemValue("Required", "xx\\xx.xx");
oNotesDocument.ReplaceItemValue("SendTo", "[email protected]");
oNotesDocument.ReplaceItemValue("From", "[email protected]");
oNotesDocument.ReplaceItemValue("Principal", "pr.incipal");
oNotesDocument.ReplaceItemValue("Chair", "erdem.tomus");
oNotesDocument.ReplaceItemValue("Location", "location test");
oNotesDocument.ReplaceItemValue("Body", an invitation");
oNotesDocument.ComputeWithForm(true, false);
oItemValue = oNotesDocument.GetItemValue("SendTo");
//Send the email
oNotesDocument.Send(false, ref oItemValue);
我能够发送邀请,但我无法填写与莲花笔约会表格的哪一部分的与会者。将在此感谢帮助。 事实上,我需要谁的财产,但它没有像那样工作ReplaceItemValue。 谢谢
这使我想到一个相关的问题:“有多少组织仍在使用Lotus Notes?”我想标记这个'wtf-is-lotus-notes',但杀死的乐趣总是编辑那些东西。 – Dave 2010-07-29 12:41:10
希望我有机会改变它的男人......我们试图将它与分享点整合,认为我的工作有多难:) – cranfan 2010-07-29 12:54:27
我感到你的痛苦。我支持的一个系统有W95客户端。 – Dave 2010-07-29 13:02:06