Spaces Removed in HTMLBody

  • Thread starter Thread starter mikebabb
  • Start date Start date
M

mikebabb

I have a C# program using an Outlook 2000 generated interop object in
which I'm prefilling the the MailItem's HTMLBody. The problem that I'm
having is that spaces between words get removed if a tag (such as font
or bold) is contained between the words. For example:

Dear </span><span style=\"font-family:'Tahoma';font-size:11pt;\">Ally

gets displayed as:

DearAlly

Has anyone else seen this or have a solution. Thanks.
 
Am 5 Jun 2006 14:19:53 -0700 schrieb (e-mail address removed):

You can replace all spaces by &nbsp;
 
That was a good suggestion, but it didn't work.

Michael said:
Am 5 Jun 2006 14:19:53 -0700 schrieb (e-mail address removed):

You can replace all spaces by &nbsp;
 
Back
Top