<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    <code><span style="color: rgb(0, 0, 0);"><span style="color: rgb(0,
          0, 187);">It is working if you add</span></span></code> <span
      style="color: rgb(0, 0, 187);">html_entity_decode.</span><br>
    <code><span style="color: rgb(0, 0, 0);"><span style="color: rgb(0,
          0, 187);"></span></span></code><br>
    <br>
    <span style="color: rgb(0, 0, 187);">pmform.php:<br>
      <br>
    </span>$msgtext = htmlentities($msgtext , ENT_NOQUOTES, 'utf-8'); 
    -->  UTF8--> HTML<br>
    $msgtext = <span style="color: rgb(0, 0, 187);">html_entity_decode</span><span
      style="color: rgb(0, 119, 0);">(</span>$msgtext
    );                                 --> HTML --> DE Chars<br>
    <code><span style="color: rgb(0, 0, 0);"><span style="color: rgb(0,
          119, 0);"></span></span></code><br>
    <br>
    Maybe there is an better way, but for now i will use this way.<br>
    <br>
    Dirk<br>
    <code><span style="color: rgb(0, 0, 0);"><span style="color: rgb(0,
          119, 0);"></span></span></code><br>
    <code><span style="color: rgb(0, 0, 0);"><span style="color: rgb(0,
          119, 0);"></span></span></code><br>
    Am 02.01.2012 23:52, schrieb John Rankin:
    <blockquote
cite="mid:8513dc25f5aff99436f49b8ac0cafbf9.squirrel@intranet.affinity.co.nz"
      type="cite">
      <blockquote type="cite"><br>
        I have a German Page and Users can send a mail from my page.<br>
        In German we have characters like "äüö" or in HTML
        &auml;&uuml;&ouml;.<br>
        But because of the UTF-8, the mails are with encodes chars.<br>
        <br>
        Dirk<br>
        <br>
        Am 30.12.2011 21:41, schrieb 123_dirk:<br>
        <blockquote type="cite">Hi,<br>
          <br>
          i'm using the standard mailform but the text in the mail is
          UTF8 coded.<br>
          Is it possible to disable UTF8 just for the Mailtext?<br>
          <br>
        </blockquote>
      </blockquote>
      One approach may be to transform the utf8-encoded characters into
      the<br>
      corresponding html entities:<br>
      <br>
      $text = htmlentities($text, ENT_NOQUOTES, 'utf-8');<br>
      <br>
      where $text is a string that contains the mail message<br>
      <br>
    </blockquote>
  </body>
</html>