I am trying to implement a web feature in ASP.NET C# where the user clicks an image on a webpage and starts a new Outlook email message with some HTML from the page copied to the body section. The section that is emailed would contain text, images and links.
I already looked at mailto, but it does not work because the &body= does not accept HTML content and only renders it as plain text. I do not want the email to actually get sent, as the user determines who receives the email along with other relevant information.
Is there a way to accomplish this?
Update: I've already taken a look at other similar questions and the solutions either involve actually sending the emails or involve solutions not related to ASP.NET (ex. using PHP).