使用 EWS 托管 api 转发电子邮件并保留标头

发布于 2024-12-09 05:24:31 字数 156 浏览 1 评论 0原文

我正在寻找有关如何使用托管 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 技术交流群。

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

发布评论

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

评论(1

我们只是彼此的过ke 2024-12-16 05:24:31

给定一个 EmailMessage 对象,您只需调用 CreateForwareMessage() 方法:

var forwareMessage = item.CreateForward();

关于另一个问题:获取邮件的 MIME 内容并将其附加到新消息:

item.Load(new PropertySet(BasePropertySet.IdOnly, ItemSchema.MimeContent));
var mail = new EmailMessage(service);
var attachment = mail.Attachments.AddFileAttachment("Original message.eml", item.MimeContent.Content);
attachment.ContentType = string.Format("message/rfc822; charset={0}", item.MimeContent.CharacterSet);
mail.ToRecipients.Add("[email protected]");
mail.Subject = "testmail";
mail.SendAndSaveCopy();

编辑:

创建转发消息并将回复设置为标头:

var fw = item.CreateForward();
var fwMsg = fw.Save(WellKnownFolderName.Drafts);
fwMsg.ReplyTo.Add("[email protected]");
fwMsg.SendAndSaveCopy();

Given an EmailMessage object, you can just call the CreateForwareMessage() method:

var forwareMessage = item.CreateForward();

Regarding the other question: Get the MIME content of the mail and attach it to a new message:

item.Load(new PropertySet(BasePropertySet.IdOnly, ItemSchema.MimeContent));
var mail = new EmailMessage(service);
var attachment = mail.Attachments.AddFileAttachment("Original message.eml", item.MimeContent.Content);
attachment.ContentType = string.Format("message/rfc822; charset={0}", item.MimeContent.CharacterSet);
mail.ToRecipients.Add("[email protected]");
mail.Subject = "testmail";
mail.SendAndSaveCopy();

EDIT:

Create forward message and set reply to header:

var fw = item.CreateForward();
var fwMsg = fw.Save(WellKnownFolderName.Drafts);
fwMsg.ReplyTo.Add("[email protected]");
fwMsg.SendAndSaveCopy();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文