Search code examples
c#windows-8windows-runtimesharingmailto

Sending email to multiple recipients with html body


In my WinRT app I need to send email to multiple recipients with html body.
I have 2 Ideas (both don't works):

  1. mailto: (doesn't work with html body SO question)
  2. WinRT sharing (can't set recipients directly)

My question: Is this possible to send one email to multiple recipients with html body in WinRT (c#)?


Solution

  • No, it is not possible to send to multiple recipients with an HTML body.

    Instead, you might want to consider using an email service to send the email on behalf of the end user (from a general account shared by your application users).