在C#中创建Outlook投票按钮和跟踪响应?

时间:2009-03-28 04:49:16

标签: c# outlook

使用C#2.0我想:

  1. 在Outlook邮件中添加投票按钮并发送。
  2. 跟踪回复。
  3. 我可以看到一些参考资料来阅读邮件内容,因此可能会进行跟踪,但如何实现投票按钮呢?

1 个答案:

答案 0 :(得分:0)

您必须将此VB代码翻译为c#

ActiveInspector.CurrentItem.VotingOptions = "Yes;No;Maybe"

为了跟踪,您必须参考使用投票选项发送的电子邮件。


for i = 1 to ActiveInspector.CurrentItem.Recipients.Count
    if ActiveInspector.CurrentItem.TrackingStatus = olTrackingReplied then
        debug.Print ActiveInspector.CurrentItem.Recipients(i).AutoResponse 
    endif
next

编辑:这里,ActiveInspector.CurrentItem指的是与投票按钮一起发送的MailItem实例。您可以通过使用引用ActiveInspector.CurrentItem的变量来优化此代码,并在代码中使用该变量。