问题
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
Exchange Web Services
Outlook Object Model (will not work in a service, such as IIS)
Extended MAPI (C++ or Delphi) or a wrapper (such as Redemption) accessible from C#.
来源:https://stackoverflow.com/questions/25900131/microsoft-sent-folder