C#Outlook向多个收件人发送一封电子邮件

时间:2013-03-13 18:08:57

标签: c# outlook

我一直试图弄清楚如何通过C#向多个收件人发送Outlook电子邮件。现在我可以在收件人之间进行循环,但在我发送的邮箱中会收到很多已发送的电子邮件。

            Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
            Microsoft.Office.Interop.Outlook.MailItem oMsg = (Microsoft.Office.Interop.Outlook.MailItem)oApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);

            oMsg.HTMLBody ="test";
            oMsg.Subject = "test" ;
            Microsoft.Office.Interop.Outlook.Recipients oRecips = (Microsoft.Office.Interop.Outlook.Recipients)oMsg.Recipients;        
            Microsoft.Office.Interop.Outlook.Recipient oRecip = (Microsoft.Office.Interop.Outlook.Recipient)oRecips.Add("xxx@xxx.com");
            oRecip.Resolve();
            oMsg.Send();
            oRecip = null;
            oRecips = null;
            oMsg = null;
            oApp = null;

如果我添加多个地址,如: (Microsoft.Office.Interop.Outlook.Recipient)oRecips.Add( “XXX @ xxx.com,YYY @ yyy.com,ZZZ @ zzz.com”) 这不会以某种方式起作用。任何人都可以帮我吗?

5 个答案:

答案 0 :(得分:4)

您只需要用分号分隔每个用户。例如,请查看下面的代码。

Outlook.MailItem mail = null;
 Outlook.Application objApp = new Outlook.Application();               
 mail=(Outlook.MailItem)objApp.CreateItem(Outlook.OlItemType.olMailItem);

  mail.Subject ="HI";
  mail.To = "personone@yahoo.com; Persontwo@yahoo.com";
  mail.Attachments.Add("C:\SOME_FOLDER\SomeFile");
  mail.Body="xxxxxx";
  mail.Send();

答案 1 :(得分:3)

(“xxx @ example.com,yyy @ example.org,zzz @ meta.example.com”)不是分隔符的分号,如 (“xxx@example.com; yyy@example.org; zzz@meta.example.com”)??

如果我进入我的Outlook并发送给多个人,则会在to:字段中显示一个分号。

答案 2 :(得分:1)

为什么不为每个收件人调用“oRecips.Add”?毕竟它是添加到收件人......?

编辑:刚刚验证:

 Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
 Microsoft.Office.Interop.Outlook.MailItem oMsg = (Microsoft.Office.Interop.Outlook.MailItem)oApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);

 oMsg.HTMLBody = "test";
 oMsg.Subject = "test";
 Microsoft.Office.Interop.Outlook.Recipients oRecips = (Microsoft.Office.Interop.Outlook.Recipients)oMsg.Recipients;

 foreach (var recipient in new string[] { "a@b.c", "c@d.e" })
 {
      Microsoft.Office.Interop.Outlook.Recipient oRecip = (Microsoft.Office.Interop.Outlook.Recipient)oRecips.Add(recipient);
      oRecip.Resolve();
 }
 oRecips = null;

 oMsg.Send();
 oMsg = null;
 oApp = null;

将创建一个包含任意数量收件人的ONE项目,就像我想的那样。

答案 3 :(得分:1)

此代码适用于发送多个收件人

            private static void SendMail(string body){
            try   { string tomail = System.Configuration.ConfigurationManager.AppSettings["ToMailString"];
            string[] allToAddresses = tomail.Split(";,".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);

            Microsoft.Office.Interop.Outlook.Application oApp = (Microsoft.Office.Interop.Outlook.Application)Marshal.GetActiveObject("Outlook.Application");
            //Microsoft.Office.Interop.Outlook.Application oApp = new Microsoft.Office.Interop.Outlook.Application();
            //Microsoft.Office.Interop.Outlook.MailItem tempItem = (Microsoft.Office.Interop.Outlook.MailItem)Globals.ThisAddIn.Application.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem);

            Microsoft.Office.Interop.Outlook.MailItem email = (Microsoft.Office.Interop.Outlook.MailItem)(oApp.CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem));
            email.Subject = "Status Report";
            email.Body = body;
            Microsoft.Office.Interop.Outlook.Recipients oRecips = (Microsoft.Office.Interop.Outlook.Recipients)email.Recipients;
            int mailcount1 = 1;
            for (; mailcount1 < allToAddresses.Length; mailcount1++)
            {
                if (allToAddresses[mailcount1].Trim() != "")
                {
                    //email.Recipients.Add(allToAddresses[mailcount1]);
                    Microsoft.Office.Interop.Outlook.Recipient oRecip = (Microsoft.Office.Interop.Outlook.Recipient)oRecips.Add(allToAddresses[mailcount1]);
                    oRecip.Resolve();
                }
            }

            oRecips = null;
            ((Microsoft.Office.Interop.Outlook.MailItem)email).Send(); 
            Console.WriteLine("Mail Sent");
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.ToString());
        }

    }

答案 4 :(得分:0)

尝试此代码,如果您想发送多个人用cc或bcc或按照您的意愿添加

public void SendAutomatedEmail(string htmlString, string subject, string from, string fromPwd, string recipient)
    {
        try
        {
            string mailServer = "xxxxExchangesver.com";
            string[] allToAddresses = recipient.Split(";,".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);

            MailMessage message = new MailMessage(from, allToAddresses[0]);
            int mailcount1 = 1;
            for (; mailcount1 < allToAddresses.Length; mailcount1++)
            {
                if (allToAddresses[mailcount1].Trim() != "")
                    message.To.Add(allToAddresses[mailcount1]);
            }
            message.IsBodyHtml = true;
            message.Body = htmlString;
            message.Subject = subject;
            message.CC.Add(from);

            SmtpClient client = new SmtpClient(mailServer);

            var AuthenticationDetails = new NetworkCredential(from, fromPwd);
            client.Credentials = AuthenticationDetails;
            client.EnableSsl = true;
            client.Send(message);
            client.Dispose();

        }
        catch (Exception e)
        {
            status(e.Message, Color.Red);
        }
    }