In sending emails to our Russian members I have the email send as UTF-8 in the header... it works fine, however whitespace is converted into this weird character: “3 â€

it appears to be that it is caused by whitespace in the acryllic language. so I was told I had to convert all whitespace to this:
 
however when I do this, it also converts the whitespace inside the html tags thus making it not work. so how can I swap the whitespace, which I do like this:
my $_swapWithText = ' '; $__htmlEmailText =~ s/ /$_swapWithText/eg;
How can I do this ONLY for stuff NOT IN html tags? I know how to swap out only html, but cannot figure out how to swap whitespace that is in the whole variable except what is in side the html tags...

Your wisdom will be greatly appreciated.

Richard

In reply to Problem with UTF-8 email by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.