使用C#发送邮件(是否需要特定的IIS配置)?

发布于 2024-12-05 07:33:54 字数 754 浏览 2 评论 0原文

我刚刚安装了 IIS,我想启用通过 C# 发送电子邮件。我不知道需要在 IIS 中配置什么。
我尝试了一些事情但没有成功。我是 ASP.net 的初学者。

我使用的代码如下。

// create mail message object
MailMessage mail = new MailMessage();
mail.From = @"[email protected]";// put the from address here
mail.To = @"[email protected]"; // put to address here
mail.Subject = "test";  // put subject here 
mail.Body = "test";// put body of email here
SmtpMail.SmtpServer = "localhost"; // put smtp server you will use here 
// and then send the mail

I have just installed IIS, and I want to enable sending emails through C#.I don't know what I need to configure in IIS.
I tried few things but invain. I'm very beginner in ASP.net.

The code I use is the following one.

// create mail message object
MailMessage mail = new MailMessage();
mail.From = @"[email protected]";// put the from address here
mail.To = @"[email protected]"; // put to address here
mail.Subject = "test";  // put subject here 
mail.Body = "test";// put body of email here
SmtpMail.SmtpServer = "localhost"; // put smtp server you will use here 
// and then send the mail

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

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

发布评论

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

评论(1

玩套路吗 2024-12-12 07:33:54

在 IIS7 下,您需要转到 IIS 管理器内的邮件设置。

查看 http://technet.microsoft.com/ en-us/library/cc772058(WS.10).aspx

简而言之

  • 转到 IIS 管理器
  • 转到顶级站点以配置所有服务器或转到您的特定站点
  • 打开功能 查看
  • 打开 SMTP 电子邮件
  • 设置适当的邮件详细信息

如果您需要安装邮件服务器,请查看 http://learn.iis.net/page.aspx/751/configure-smtp-e-mail-in-iis-7/ 了解详细信息。

Under IIS7 you need to go to your mail settings inside the IIS Manager.

Take a look at http://technet.microsoft.com/en-us/library/cc772058(WS.10).aspx

In short

  • Go to IIS Manager
  • Go to the top level site to configure for all of the server or go to your specific site
  • Open the Feartures View
  • Open SMTP Email
  • Set the appropriate mail details

If you need to install a mail server, take a gander at http://learn.iis.net/page.aspx/751/configure-smtp-e-mail-in-iis-7/ for details.

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