我可能会在 System.Net.Mail.SendCompletedEventHandler 中收到哪些错误?

发布于 2024-08-18 05:35:45 字数 116 浏览 5 评论 0原文

我正在使用 SendAsync 方法发送一些电子邮件。 SendCompletedEventHandler 的 AsyncCompletedEventArgs 中可能会返回哪些不同的错误?是否有处理这些问题的推荐做法?

I am using the SendAsync method to send some emails out. What different errors could possibly be returned in the AsyncCompletedEventArgs in the SendCompletedEventHandler? Is there recommended practices for handling these?

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

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

发布评论

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

评论(1

熟人话多 2024-08-25 05:35:45

这里一切皆有可能,您可能正在尝试与一个特别脾气暴躁的 SMTP 服务器通信。您无法处理代码中的错误,您的代码无法改变服务器的工作方式。需要人来弄清楚为什么服务器不喜欢您的消息。 SMTP 服务器可能返回的错误代码另有记录,请查看 SmtpStatusCode 枚举

Anything is possible here, you might be trying to talk to a particularly cranky SMTP server. You can't handle errors in your code, your code can't change the way the server works. It takes a human to figure out why the server doesn't like your message. The error codes that can be returned by an SMTP server are otherwise documented, review the SmtpStatusCode enum.

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