如何获取电子邮件发件人地址

发布于 2024-08-10 04:56:50 字数 83 浏览 5 评论 0原文

我正在用 C# 开发一个电子邮件管理器应用程序(如 Outlook),我想做一个回复功能,但是如何获取发送将要回复的电子邮件的用户的电子邮件地址?谢谢。

I'm developing a email manager application(like outlook) in C# and I want to do a reply function, but how I can get the email address of the user that sent the email that will be replyed? Thanks.

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

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

发布评论

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

评论(2

纵性 2024-08-17 04:56:50

这是您要找的吗?

System.Web.Mail.MailMessage receivedMessage = GetMail();
string replyTo = receivedMessage.From;

Is this what you're looking for?

System.Web.Mail.MailMessage receivedMessage = GetMail();
string replyTo = receivedMessage.From;
倚栏听风 2024-08-17 04:56:50

我不知道您如何解析您正在回复的邮件,但您正在查找的信息是电子邮件标头的一部分。通常会有一个 Reply-to 标头,其中包含您应将回复发送到的电子邮件地址。

I don't know how you are parsing the message you are replying to, but the information you are looking for is part of the e-mail headers. Generally there will be a Reply-to header, with the e-mail address you should sent any replies to.

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