Interop Outlook - 从另一个邮箱发送约会

Interop Outlook - Sending Appointment from another mailbox

我在 Outlook 中设置了两个邮箱。

我将它们称为 "email1@mail.com" 和 "email2@mail.com"。

我想使用 Interop 创建约会并将其发送到特定的电子邮件地址日历,而不仅仅是默认的 outlook 帐户。

using System;
using System.Diagnostics;
using System.Reflection;
using Outlook = Microsoft.Office.Interop.Outlook;

namespace Program
{
    class Program
    {
        public static void Main(string[] args)
        {
                // Create the Outlook application.
                Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();

                Outlook.Account account = oApp.Session.Accounts["email2@mail.com"];

                // Get the NameSpace and Logon information.
                Microsoft.Office.Interop.Outlook.NameSpace oNS = oApp.GetNamespace("mapi");

                // Log on by using a dialog box to choose the profile.
                oNS.Logon(Missing.Value, Missing.Value, true, true);

                // Create a new mail item.
                Microsoft.Office.Interop.Outlook.MailItem oMsg =(Microsoft.Office.Interop.Outlook.MailItem) oApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);

                // Set the subject.
                oMsg.Subject = "test";

                // Set HTMLBody.
                oMsg.HTMLBody = "test";

                oMsg.To = "test@gmail.com";
                //oMsg.CC = _cc;
                //oMsg.BCC = _bcc;

                oMsg.Save();
                oMsg.SendUsingAccount = account;

                // Add a recipient.
                //Microsoft.Office.Interop.Outlook.Recipients oRecips = (Microsoft.Office.Interop.Outlook.Recipients)oMsg.Recipients;

                // TODO: Change the recipient in the next line if necessary.
                //Microsoft.Office.Interop.Outlook.Recipient oRecip = (Microsoft.Office.Interop.Outlook.Recipient)oRecips.Add(_recipient);
                //oRecip.Resolve();

                // Send.
                (oMsg as Microsoft.Office.Interop.Outlook._MailItem).Send();

                // Log off.
                oNS.Logoff();

                // Clean up.
                //oRecip = null;
                //oRecips = null;
                oMsg = null;
                oNS = null;
                oApp = null;
        }
    }
}

此代码可以完美地从我的电子邮件 "email2@mail.com".

自动向 "test@gmail.com" 发送电子邮件。

但是,我想为特定的电子邮件地址自动创建一个 appointment/meeting。

这是我目前的尝试:

using System;
using System.Diagnostics;
using System.Reflection;
using Outlook = Microsoft.Office.Interop.Outlook;

namespace SendEventToOutlook
{
    class Program
    {
        public static void Main(string[] args)
        {
            try
            {
                // Create the Outlook application.
                Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();

                Outlook.Account account = oApp.Session.Accounts["email2@mail.com"];

                // Get the nameSpace and logon information.
                Microsoft.Office.Interop.Outlook.NameSpace oNS = oApp.GetNamespace("mapi");

                // Log on by using a dialog box to choose the profile.
                oNS.Logon(Missing.Value, Missing.Value, true, true);

                // Create a new Appointment item.
                Microsoft.Office.Interop.Outlook.AppointmentItem appt =
                    (Microsoft.Office.Interop.Outlook.AppointmentItem)
                        oApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olAppointmentItem);

                appt.Start = DateTime.Now;
                appt.End = DateTime.Now.AddDays(7);
                appt.Location = "Test";
                appt.Body = "Test";
                appt.AllDayEvent = false;
                appt.Subject = "Test";

                appt.Save();
                appt.SendUsingAccount = account;

                // Log off.
                oNS.Logoff();

                appt = null;
                oNS = null;
                oApp = null;
            }
            catch (Exception ex)
            {
                Debug.WriteLine("The following error occurred: " + ex.Message);
            }
        }
    }
}

此代码确实成功创建了约会,但它一直在为 "email1@mail.com" 而不是 "email2@mail.com" 创建约会,这不应该发生,因为我已将发送帐户指定为 "email2@mail.com" 来自行:

Outlook.Account account = oApp.Session.Accounts["email2@mail.com"];

然后

appt.SendUsingAccount = account;

这是我在 Outlook 中设置的两个电子邮件地址的方式:http://i.imgur.com/0eopV8A.png

两个电子邮件地址都有不同的用户名,并且来自不同的 domains/mail 服务器,如该屏幕截图所示。

有人能看到我正在做的问题吗?或者是否有不同的解决方案?

谢谢。

不清楚您是在单个邮件配置文件中还是在单独的配置文件中设置了两个帐户。

AppointmentItem class 的 SendUsingAccount 属性 允许设置一个 Account 对象,该对象表示要发送 AppointmentItem 的帐户。因此,SendUsingAccount 属性 可用于指定调用 Send 方法时应用于发送 AppointmentItem 的帐户。我想这不是你要找的。

无论如何,您可以使用 Store class 的 GetDefaultFolder 方法,其中 returns 一个 Folder 对象,代表商店中的默认文件夹,并且是FolderType 参数。此方法类似于 NameSpace 对象的 GetDefaultFolder 方法。不同之处在于此方法获取与帐户关联的交付商店中的默认文件夹,而 NameSpace.GetDefaultFolder returns 当前配置文件的默认商店中的默认文件夹。

因此,您可以获取所需帐户的日历文件夹并在其中添加新约会。

您可能会发现 MSDN 中的以下文章很有帮助: