为什么 Hotmail 不允许我在电子邮件地址之外添加姓名?
我尝试从 Ruby on Rails 应用程序发送电子邮件,每当我使用以下格式时: Jon Doe <[电子邮件受保护]>
,Hotmail 将电子邮件标记为垃圾邮件。但是,当我使用 [email protected]
没有名字,一切都会顺利。有人知道如何解决这个问题,这样我的电子邮件就不会被发送到 Hotmail 用户的垃圾邮件吗?
我在 DNS 上设置了 SPF,并且从 SPF 验证服务器发送数据(如果有帮助的话)。
谢谢!
I'm trying to send emails from my Ruby on Rails application, and whenever I use the following format: Jon Doe <[email protected]>
, Hotmail marks the email as spam. However, when I use [email protected]
without the name, it goes through fine. Anybody know how to get around this so my emails don't get sent to spam for hotmail users?
I have SPF set up on my DNS and I'm sending from the SPF verified server if that's of any help.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在邮件发件人或标题中指定了漂亮的名称?根据 RFC 2821,在 MAIL FROM 中,您只需包含邮箱地址本身。大多数邮件服务器也可以容忍来自那里的漂亮地址,但 Hotmail 可能会将其用作垃圾邮件信号。
Are you specifying the pretty name in the MAIL FROM or in the header? In the MAIL FROM, you're only supposed to include the mailbox address itself, according to RFC 2821. Most mail servers will tolerate the pretty-from there too, but Hotmail may be using that as a spam signal.