c# Outlook向多个收件人发送一封电子邮件
本文关键字:电子邮件 收件人 Outlook | 更新日期: 2023-09-27 18:03:40
我一直在试图弄清楚如何通过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")这是行不通的。有人能帮我一下吗?
您只需要用分号分隔每个用户。例如,请看下面的代码。
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();
("xxx@example.com,yyy@example.org,zzz@meta.example.com")不是分号("xxx@example.com;yyy@example.org;zzz@meta.example.com")? ?
如果我打开Outlook并发送给多人,它会在to:字段中显示一个分号
为什么不直接叫"oRecips "呢?加上"每个收件人?"毕竟它是添加到收件人…?
编辑:刚刚验证:
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;
将创建一个具有任意数量收件人的已发送项目,就像我想的那样。
这段代码可以正常发送多个收件人
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());
}
}
如果您想发送多人,请尝试此代码,以抄送或密件方式添加,或按您的意愿添加
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);
}
}