I am able to successfully embed HTML text by copying to the Clipboard (thanks to Mike Stall's .NET Debugging Blog) and paste into the body of an Outlook email message.
However, "special" Unicode characters are not getting pasted in properly using the Word.Selection's PasteAndFormat(), PasteSpecial(), or Past() methods. Everything works perfectly unless I have text like this: "Ôh my gôd".
Before the Paste() operation, I can get the clipboard text and see that the correct text has been put into the buffer, and I know the font supports these characters because I can do a copy and paste to the embedded HTML in the email body after my code executes (and it looks fine), but I can't seem to Paste() text with these "special characters" into a Word.Selection. I'm using C#, Visual Studio 2010, and Outlook 2010, fyi.
Thanks in advance for help.
-Eric