如何使用 microsoft c# 通过 smtp 服务器发送电子邮件进行设置

发布于 2024-10-10 17:27:38 字数 977 浏览 4 评论 0原文

使用 microsoft c# 通过 smtp 服务器发送电子邮件时如何设置“发件人”

如果您查看此图片,您就会明白我的意思

我使用下面的代码发送电子邮件

替代文字

MailMessage mail = new MailMessage();
                    mail.To.Add(srUserEmail);

                    string srBody = "bla bla bla";
 mail.From = new MailAddress("[email protected]");
                        mail.Subject = "bla bla bla";
     mail.Body = srBody;
                    mail.IsBodyHtml = true;

                    SmtpClient smtp = new SmtpClient();

                    smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
                    smtp.UseDefaultCredentials = true;
                    smtp.Host = "xxx.xx.xx.xx";
                    smtp.Port = xxx;


                    smtp.Send(mail);

How to set "from" when sendin email via smtp server with using microsoft c#

if you look this image you will understand what i mean

i use the code below for sending emails

alt text

MailMessage mail = new MailMessage();
                    mail.To.Add(srUserEmail);

                    string srBody = "bla bla bla";
 mail.From = new MailAddress("[email protected]");
                        mail.Subject = "bla bla bla";
     mail.Body = srBody;
                    mail.IsBodyHtml = true;

                    SmtpClient smtp = new SmtpClient();

                    smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
                    smtp.UseDefaultCredentials = true;
                    smtp.Host = "xxx.xx.xx.xx";
                    smtp.Port = xxx;


                    smtp.Send(mail);

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

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

发布评论

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

评论(2

好久不见√ 2024-10-17 17:27:39

将第二个参数传递给 MailAddress 构造函数:

mail.From = new MailAddress("[email protected]", "Some Display Name")

Pass a second argument to the MailAddress constructor:

mail.From = new MailAddress("[email protected]", "Some Display Name")
梦里兽 2024-10-17 17:27:39

像这样设置您的电子邮件地址的格式:

mail.From = new MailAddress("PokemonCraft <[email protected]>");

MailAddress 对象应识别 <> 标记内的部分是电子邮件地址,而其前面的部分是发送电子邮件的个人或公司的名称。

Format your email address like this:

mail.From = new MailAddress("PokemonCraft <[email protected]>");

The MailAddress object should recognize that the part inside <> tags is an email address, whereas the part preceding that is the name of the person or business sending the email.

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