AddPOP3Account未在Redemption Session.Accounts中公开

时间:2016-03-07 19:43:05

标签: c# outlook interop office-interop outlook-redemption

我正在尝试设置Outlook配置文件,以便在Outlook中测试用户技能的教育应用程序中使用。我们使用 C#和Redemption 与Outlook进行互动。在Profman库的帮助下,我创建了配置文件,然后使用RDO库,我在使用新配置文件登录后添加了PSTStore。 (我需要运行应用程序而不会弄乱用户创建的配置文件和设置

但是,在尝试添加POP3帐户时,根据“兑换”教程中的示例, AddPOP3Account方法不可用。我显然在这里遗漏了一些东西,但我无法理解。

这是我正在使用的代码:

Redemption.RDOSession Session = new Redemption.RDOSession();
Session.Logon("Des", missing, false, true); 
var Store = Session.Stores.AddPSTStore(@"D:\Des.pst", _ 
rdoStoreType.olStoreUnicode, "Des Mail");
var Accounts = Session.Accounts;
var POP3Account = Session.Accounts.AddPOP3Account("Joe The User", _
                                      "address@domain.demo", _
                                      "Pop3server.domain.demo", _
                                      "SmtpServer.domain.demo", _
                                      "LogonUserName@domain.demo", _
                                      "ThePassword!")

最后一行是有错误的行,因为AddPOP3Account方法由于某种原因不可用。

0 个答案:

没有答案