0

我正在寻找一种使用 c# 编码的 Outlook 加载项从 Outlook 中读取 IMAP/Microsoft Exchange 设置的方法。

谢谢你帮助我。

4

2 回答 2

1

我认为您正在寻找的是dll的Accounts接口。Office.Interop.Outlook

您还没有提到您使用的 Outlook 版本,此代码适用于 Outlook 2010,由 Microsoft MVP Helmut Obertanner 编写,取自此处

using System;
using System.Text;
using Outlook = Microsoft.Office.Interop.Outlook;

namespace OutlookAddIn1
{
    class Sample
    {
        public static void DisplayAccountInformation(Outlook.Application application)
        {

            // The Namespace Object (Session) has a collection of accounts.
            Outlook.Accounts accounts = application.Session.Accounts;

            // Concatenate a message with information about all accounts.
            StringBuilder builder = new StringBuilder();

            // Loop over all accounts and print detail account information.
            // All properties of the Account object are read-only.
            foreach (Outlook.Account account in accounts)
            {

                // The DisplayName property represents the friendly name of the account.
                builder.AppendFormat("DisplayName: {0}\n", account.DisplayName);

                // The UserName property provides an account-based context to determine identity.
                builder.AppendFormat("UserName: {0}\n", account.UserName);

                // The SmtpAddress property provides the SMTP address for the account.
                builder.AppendFormat("SmtpAddress: {0}\n", account.SmtpAddress);

                // The AccountType property indicates the type of the account.
                builder.Append("AccountType: ");
                switch (account.AccountType)
                {

                    case Outlook.OlAccountType.olExchange:
                        builder.AppendLine("Exchange");
                        break;

                    case Outlook.OlAccountType.olHttp:
                        builder.AppendLine("Http");
                        break;

                    case Outlook.OlAccountType.olImap:
                        builder.AppendLine("Imap");
                        break;

                    case Outlook.OlAccountType.olOtherAccount:
                        builder.AppendLine("Other");
                        break;

                    case Outlook.OlAccountType.olPop3:
                        builder.AppendLine("Pop3");
                        break;
                }

                builder.AppendLine();
            }

            // Display the account information.
            System.Windows.Forms.MessageBox.Show(builder.ToString());
        }
    }
}

我可以从文档中看到,理论上这也应该适用于 Outlook 2007。

如果您打算使用 Outlook 2003,您将不得不做一些不同的事情,因为 Outlook 2003 对象模型不包括对 Accounts 属性的访问。

为此,您要么必须使用第三方库,例如兑换,请参阅此答案以获取一些替代方案。

您显然也可以根据另一个问题的答案使用注册表来执行此操作。

于 2013-01-16T11:51:45.930 回答
0

对于交换设置,您可以查看此 http://msdn.microsoft.com/en-US/exchange

于 2013-01-16T11:50:43.973 回答