分组发送邮件 [英] Sending Mails in group

查看:77
本文介绍了分组发送邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

作为群组邮件.

Hello,
i want to sent mails in group by using comma(,) as separator for each E-mail Id''s and when button is clicked the mail should be sent
as a group mail.


您能帮忙吗 

推荐答案

请参阅这可能对您有帮助

c#代码,用于以asp发送组邮件.net [ ^ ]
Refer this may help you

c# code for sending group mails in asp.net[^]


检查此链接

如何发送附件和组ASP.NET中的邮件 [
Check this link

How to send attachment and group mail in ASP.NET[^]


如果您实际上是想向一群人发送电子邮件,要做的是将适当数量的电子邮件地址添加到收件人"属性中(请记住,所有收件人都会看到其他所有收件人的电子邮件地址):

If you actually mean that you want to send an email toa group of people, all you have to do is add the appropriate number of email addresses to the To property (keeping in mind that all of the recipients will see all of the other recipients'' email addresses):

System.Net.Mail.MailMessage message = new System.Net.Mail.MailMessage();
message.To.Add("person1@whocares.com");
message.To.Add("person2@whocares.com");
message.To.Add("person3@whocares.com");



如果要向一个人发送多个电子邮件,则可以合并电子邮件的正文,也可以为每个正文"发送一封单独​​的电子邮件.



If you want to send more than one email to a single person, you can either merge the bodies of the emails, or send an indvidual email for each "body" that you have.


这篇关于分组发送邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆