从gmail ID向多个用户发送电子邮件 [英] Sending email to multiple user from a gmail id

查看:73
本文介绍了从gmail ID向多个用户发送电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我曾经用一个gmail帐户向多个用户发送邮件,但是我的NetworkCredential
是我自己的公司服务器,
我用过

I have used a gmail account to send a mail to multiple users,but my NetworkCredential
is my own company server,
i have used

MailMessage objMessage = new MailMessage();
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
 {
objMessage.To.Add(ds.Tables[0].Rows[i]["email"].ToString())
}


邮件已发送给所有用户,但问题是每个用户都可以看到我添加的所有邮件ID,
如何解决问题


Mail has sent to all users but the problem is each user can see all the mail id which i have added ,
how can i solve the problem

推荐答案

使用 ^ ]列表,而不是收件人"列表-将其发送到安全"地址,并将其他eveybody添加为密件抄送.

密件抄送(BCC)代表密件抄送",与抄送列表相似,但名称未列出给任何人.
Use the BCC[^] list instead of the To list - send it to a "safe" address, and add eveybody else as BCC.

BCC stands for "Blind Carbon Copy", and is similar to the CC list, but names are not listed to anyone.


http://tipsaspdotnet.blogspot.com/2011/08/sending-mail-to-multiple-recipient.html [ ^ ]
http://forums.asp.net/t/1533488.aspx/1 [ ^ ]
http://go4answers.webhost4life.com/Example/net-20- send-email-multiple-to-11609.aspx [ ^ ]
http://tipsaspdotnet.blogspot.com/2011/08/sending-mail-to-multiple-recipient.html[^]
http://forums.asp.net/t/1533488.aspx/1[^]
http://go4answers.webhost4life.com/Example/net-20-send-email-multiple-to-11609.aspx[^]


这篇关于从gmail ID向多个用户发送电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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