Net::IMAP::Envelope 中的发件人和发件人字段有什么区别?

发布于 2024-11-02 10:38:23 字数 446 浏览 2 评论 0原文

如果您在此处查看 Net::IMAP::Envelope 的文档

http://www.ruby-doc.org/stdlib/libdoc/net/imap/rdoc/classes/Net/IMAP.html

该结构包含这两个字段:

from:   Returns an array of Net::IMAP::Address that represents the from.
sender: Returns an array of Net::IMAP::Address that represents the sender.

之间有什么区别这两个领域,从概念上讲?

If you look at the doc for Net::IMAP::Envelope here

http://www.ruby-doc.org/stdlib/libdoc/net/imap/rdoc/classes/Net/IMAP.html

the struct includes these two fields:

from:   Returns an array of Net::IMAP::Address that represents the from.
sender: Returns an array of Net::IMAP::Address that represents the sender.

What's the difference between these two fields, conceptually?

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

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

发布评论

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

评论(1

不一样的天空 2024-11-09 10:38:23

您会看到 IMAP 从电子邮件本身解析的字段。来自维基百科的电子邮件:标题字段

发件人:电子邮件地址,以及可选的作者姓名。在许多电子邮件客户端中,除非通过更改帐户设置,否则无法更改。

发件人:代表发件人:字段中列出的作者的实际发件人地址(秘书、列表管理员等)。

当你想回复消息时,还必须考虑 Reply-To:

回复:用于回复消息的地址。

该页面上有更多关于欺骗以及 MTA(服务器)试图避免和检测欺骗的讨论,但以上是信息的要点。

You're seeing fields that IMAP parsed from the email message itself. From Wikipedia's Email: Header fields:

From: The email address, and optionally the name of the author(s). In many email clients not changeable except through changing account settings.

Sender: Address of the actual sender acting on behalf of the author listed in the From: field (secretary, list manager, etc.).

There's also Reply-To which has to be considered when you want to reply to a message:

Reply-To: Address that should be used to reply to the message.

There is a bit more discussion on that page about spoofing and attempts by the MTA (server) to avoid and detect it, but the above is the gist of the info.

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