我缺少什么?我的应用程序可以通过我的开发盒上的 gmail 发送电子邮件,但不能在我的服务器上发送电子邮件

发布于 2024-08-15 00:55:22 字数 464 浏览 7 评论 0原文

  • 我的配置文件是相同的,除了连接字符串。
  • 我在两台机器上都使用 IIS
  • 我提升了服务器上的 IIS 用户以确保这不是权限问题
  • 我的服务器上没有抛出任何异常,其中未发送电子邮件
  • 我知道 gmail 配置是正确的,因为我可以发送来自我的开发箱的电子邮件。
  • Windows 防火墙已关闭,并且网络防火墙未阻止出站端口。

我还应该寻找什么?

Win2k8 上的 IIS 7,使用 ASP.NET w/ C#

SmtpClient smtpClient = new SmtpClient();
smtpClient.EnableSsl = true;
smtpClient.Send(fromAddress, toAddress, subject, body);
  • My config files are identical, except for connection strings.
  • I'm using IIS on both machines
  • I elevated the IIS user on the server to ensure it's not a permissions issue
  • No exceptions are thrown on my server where the e-mails are not being sent
  • I know the gmail configs are correct because I can send e-mails from my dev box.
  • Windows firewall is off and the network firewall is not blocking outbound ports.

What else should I look for?

IIS 7 on Win2k8, using ASP.NET w/ C#

SmtpClient smtpClient = new SmtpClient();
smtpClient.EnableSsl = true;
smtpClient.Send(fromAddress, toAddress, subject, body);

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

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

发布评论

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

评论(2

拔了角的鹿 2024-08-22 00:55:22

Gmail 需要通过 SMTP 客户端进行身份验证,因此您需要填写 SmtpClient 实例上的 Credentials 属性,如图所示 此处进行身份验证

这并不能解释为什么它可以在您的开发盒中工作(除非 POP3 方法仍然有效),但它可以解释为什么您所显示的代码不起作用。

Gmail requires authentication from the SMTP client, so you need to fill in the Credentials property on your SmtpClient instance as shown here.

That doesn't explain why it works from your development box (unless the POP3 method still works) but it would explain why the code you have shown doesn't work.

寄风 2024-08-22 00:55:22

smtpClient.Send(fromAddress, toAddress, subject, body); 包装在 try catch 语句中并查看异常是什么

wrap smtpClient.Send(fromAddress, toAddress, subject, body); inside a try catch statment and see what the exception is

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