使用.NET SmtpClient 添加密件抄送到电子邮件发送?
在 ASP.NET C# 中使用 SMTPClient 类发送电子邮件时,如何向电子邮件添加密件抄送?如何将密件抄送添加到 MailMessage 实例?
When sending email using the SMTPClient class in ASP.NET C#, how can I add bcc to the email? How can I add bcc to a MailMessage instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在寻找名称恰当的
密件抄送
属性:You're looking for the aptly-named
Bcc
property:在这里我将解释如何使用 asp.net c# 应用程序通过抄送和密件抄送发送电子邮件。
对于完整示例 http://www.stepover-f10.com/2014/01/how-send-email-with-cc-and-bcc-with-authentication-using-aspnet- csharp-example-source-code.aspx
单击此链接。
Here i will explain how to send email with cc and bcc using asp.net c# application.
For full example http://www.stepover-f10.com/2014/01/how-send-email-with-cc-and-bcc-with-authentication-using-aspnet-csharp-example-source-code.aspx
click this link.