Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正如问题所说。
我正在使用 IIS 6 使用 C# 从我的 Windows Server 发送电子邮件。我想检测来自 SMTP 电子邮件服务器的 C# 退回邮件。现在,所有退回邮件都会发送到 Gmail 帐户。我可以检查并解析该帐户中的每封电子邮件,但我想知道是否有更简单的方法,例如将 Windows 服务或其他东西连接到 IIS 6 SMTP 服务器。
帮助?
谢谢!
我对 IIS6 SMTP 服务器知之甚少,但根据我对 SMTP 的一般了解,我怀疑你会很幸运。您发给 joe@foo.com 的消息会从一个服务器转发到另一个服务器,直到它到达 foo.com SMTP 服务器,然后它会响应“joe”邮箱不存在的回复地址。该服务器可能根本与您的 SMTP 服务器没有直接联系。
因此,IIS6 SMTP 服务器没有机会接收有关退回邮件的任何信息。我认为您现有的在收件箱中轮询回复地址的想法可能是您最好的选择。