从网络服务器发送电子邮件以最大程度地减少退回邮件和垃圾邮件拦截的最佳方式是什么?
我有一个 Web 服务器,可以向世界各地的客户发送电子邮件(从 IIS 5.1)。 我发现有时电子邮件会在有效地址上被退回,或者永远不会到达,或者被视为垃圾邮件。
我正在考虑使用外部 SMTP 服务。
这会有帮助吗? 还有其他方法/技巧吗?
提前致谢。
I've got a web server that sends email (from IIS 5.1) to clients throughout the world. I have found that sometimes emails get bounced on valid addresses, or they never arrive, or get treated as spam.
I'm considering using am external SMTP service.
Will this help? Are there other ways/tips?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用正确维护的 SMTP 服务[1]可能[2]在处理垃圾邮件过滤器时避免许多问题。
要获得更具体的帮助,您必须描述特定的错误消息,发布带有标题和退回消息的示例邮件。 而且,您应该在 http://serverfault.com 上执行此操作,这是解决此类问题的更好社区。
[1] 即具有正确的 DNS 记录、不执行恶意软件操作、创建适当的标头并且不在任何 DUL 或 RBL 上的 DNS 记录。
[2] 当然,如果您触发基于内容的过滤器,这并没有帮助。
Using a properly maintained SMTP service[1] might[2] avoid many problems when dealing with spam filters.
For more specific help you'll have to describe specific error messages, post example mails with headers and bounce messages. And, you should do so on http://serverfault.com, which is the better community for such questions.
[1] i.e. one which has proper DNS records, doesn't do ratware stuff, creates appropriate headers and is not on any DUL or RBLs.
[2] of course, it doesn't help if you're triggering content based filters.