What is the difference between reply and forward in Microsoft Graph?

夙愿已清 提交于 2020-07-09 11:33:16

问题


I am using Microsoft Graph's reply and forward APIs. I am trying to understand their difference.

At first, I thought the conversationId might change if I use forward.

It turns out the conversationId won't change. So is there any difference between these two APIs? Thanks

POST /me/messages/{id}/reply
POST /me/messages/{id}/forward

回答1:


One replies, one forwards. These are fundamentally different operations, even if in both cases the conversationId is preserved. Just off the top of my head:

  • Reply: the recipients on the To and CC lines are preserved, the subject is prefixed with "RE:" (or a localized equivalent), attachments are not carried over.
  • Forward: No recipients are preserved, the subject is prefixed with "FW:" (or a localized equivalent), attachments are carried over.


来源:https://stackoverflow.com/questions/49953865/what-is-the-difference-between-reply-and-forward-in-microsoft-graph

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!