.NET 中的邮件地址

发布于 2024-07-19 13:21:39 字数 108 浏览 6 评论 0 原文

我正在尝试发送一封电子邮件,但我不想向每个人发送 5 封单独的电子邮件,而是想向所有 5 个人发送一封群发电子邮件。 这里的区别是我希望每个人都出现在“TO”或“CC”行中。 我怎样才能做到这一点?

I'm attempting to send an email and instead of sending 5 individual emails to each person, I would like to send one mass email to all 5 people. The difference here is that I want everyone to show up in the "TO" or "CC" lines. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

月亮邮递员 2024-07-26 13:21:39

这只会发送一条消息:

MailMessage msg = new MailMessage();
msg.To.Add(new MailAddress("[email protected]", "Optional Name"));
msg.To.Add(new MailAddress("[email protected]"));
msg.To.Add(new MailAddress("[email protected]"));
msg.CC.Add(new MailAddress("[email protected]"));
msg.CC.Add(new MailAddress("[email protected]"));

// can add to BCC too
// msg.Bcc.Add(new MailAddress("[email protected]"));

msg.Body = "...";
msg.Subject = "...";

SmtpClient smtp = new SmtpClient();
smtp.Send(msg);

This will send only one message:

MailMessage msg = new MailMessage();
msg.To.Add(new MailAddress("[email protected]", "Optional Name"));
msg.To.Add(new MailAddress("[email protected]"));
msg.To.Add(new MailAddress("[email protected]"));
msg.CC.Add(new MailAddress("[email protected]"));
msg.CC.Add(new MailAddress("[email protected]"));

// can add to BCC too
// msg.Bcc.Add(new MailAddress("[email protected]"));

msg.Body = "...";
msg.Subject = "...";

SmtpClient smtp = new SmtpClient();
smtp.Send(msg);
怀中猫帐中妖 2024-07-26 13:21:39
using System.Net.Mail;

...

MailMessage mmsg = new MailMessage();
mmsg.To.Add(new MailAddress("[email protected]"));
mmsg.To.Add(new MailAddress("[email protected]"));
mmsg.To.Add(new MailAddress("[email protected]"));

// set other properties here...

SmtpClient client = new SmtpClient("mymailserver.com");
client.Send(mmsg);

编辑:哇哦,约翰的手指比我的快;)

using System.Net.Mail;

...

MailMessage mmsg = new MailMessage();
mmsg.To.Add(new MailAddress("[email protected]"));
mmsg.To.Add(new MailAddress("[email protected]"));
mmsg.To.Add(new MailAddress("[email protected]"));

// set other properties here...

SmtpClient client = new SmtpClient("mymailserver.com");
client.Send(mmsg);

Edit: aww, john's fingers are faster than mine ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文