首页 新闻 会员 周边

关于C#发送接收邮件的问题。回复邮件的时候是怎么知道回复的是哪一个邮件?

0
[已解决问题] 解决于 2016-09-19 10:37

比如我收到一封邮件,点击回复,发送到服务器后,服务器怎么知道我回复的是哪一封邮件?

因为要代码实现回复功能

Eysa的主页 Eysa | 初学一级 | 园豆:62
提问于:2016-09-18 10:23
< >
分享
最佳答案
0

To start with, the reply message should do the following things (which are all convention more than anything else):

  1. The replied message's To header should be set to the original message's Reply-To value, if set, otherwise to the From value.
  2. The reply message's Subject header should be set to the value of the original message's Subject header, but with a "Re: " prefix (unless it already has one).
  3. The reply message's In-Reply-To header should be set to the original message's Message-Id header value.
  4. The reply message's References header should be set to the original message's References header value with the original message's Message-Id value appended to it.
奖励园豆:5
空明流光 | 初学一级 |园豆:106 | 2016-09-18 11:00

网上一搜2分钟答案就出来了。

空明流光 | 园豆:106 (初学一级) | 2016-09-18 11:02

@沧海一杰:  兄台,你搜的关键字是什么?

Eysa | 园豆:62 (初学一级) | 2016-09-18 11:31

@Eysa: 谷歌搜索 c# smtp email reply message id

空明流光 | 园豆:106 (初学一级) | 2016-09-18 13:09
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册