Is there a way to convert some HTML to the Outlook (2010) mail format found in Actions -> Other Actions -> View Source by using C#
?
I am sending email using System.Net.MailMessage class with HTML table in the Body to Outlook and Lotus Notes. The email received in Outlook works fine but in Lotus Notes the table format is not in order. When I tried to forward what I recieved in Outlook to Lotus Notes then it works well. Upon checking the outlook body format in View Source after recieved and forwarded, I found out that Outlook changes the source from HTML to VML(i think) after I forwarded the message.
I am searching if there's a way to generate or convert HTML to VML using 'C#'.
Below link regarding Outlook VML for reference:
http://www.formatyourbrain.com/tips-for-creating-html-e-mail-templates-for-outlook/
Thanks!