Microsoft Sent folder

ε祈祈猫儿з 提交于 2019-12-13 04:43:17

问题


I am sending the email using C# in an ASP.Net application using System.Net.Mail.

The email send part works fine. I just want to add this sent email to the sent folder of the email sender in Microsoft Outlook. I am using Microsoft Exchange 2010.

What are all the best way implement this? My expertise is in .net technologies only.

Thank you, Eric


回答1:


For a sent message to be present in the Sent Items folder, you will need to send the message using

  1. Exchange Web Services

  2. Outlook Object Model (will not work in a service, such as IIS)

  3. Extended MAPI (C++ or Delphi) or a wrapper (such as Redemption) accessible from C#.



来源:https://stackoverflow.com/questions/25900131/microsoft-sent-folder

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