Search code examples
exchange-serverexchangewebservices

Resend emails via Exchange WebService API


I've the requirement to resend Emails that were already sent. I don't have to change anything on the mail, only resend it to the original recipients. In the outlook client, it' possible via Message tab, in the Move group, click Actions, and then click Resend This Message.


Solution

  • It's simple:

    EmailMessage message = EmailMessage.Bind(...);
    EmailMessage.send();