Microsoft Sent folder

2019-09-09 23:18发布

问题:

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#.