使用 EWS 托管 api 转发电子邮件并保留标头
我正在寻找有关如何使用托管 api 转发现有电子邮件(收件箱中已有的电子邮件)的示例代码。
转发时,是否有某种方法可以在转发消息时保留消息的原始标头? 例如,有人向我发送了一封电子邮件 - 我希望 ews 将其转发给另一个收件人而不更改标头(来自、密件抄送等的原始接收时间...)。
I am looking for a sample code on how to forward an existing email message (one that is already in my inbox) using the managed api.
When forwarded is there some way to keep a message original headers while forwarding it?
for example someone sent an email to me -i would like that ews will forward it to another recipient without changing the headers (original receive time from ,bcc etc...).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
给定一个 EmailMessage 对象,您只需调用 CreateForwareMessage() 方法:
关于另一个问题:获取邮件的 MIME 内容并将其附加到新消息:
编辑:
创建转发消息并将回复设置为标头:
Given an EmailMessage object, you can just call the CreateForwareMessage() method:
Regarding the other question: Get the MIME content of the mail and attach it to a new message:
EDIT:
Create forward message and set reply to header: