phpbar.de logo

Mailinglisten-Archive

[php] Warum werden Umlaute umgewandelt?

[php] Warum werden Umlaute umgewandelt?

S. Rohe php_(at)_phpcenter.de
Thu, 6 Dec 2001 16:26:10 +0100


Wie kann ich bei diesem Formmailer ändern, das Umlaute richtig verschickt
werden und die eingetragene Emailadresse als Absender benutzt wird?

<?php
  $fmtResponse= implode("", file("response.htt"));
  $fmtMail= implode("", file("mail.htt"));
  foreach($HTTP_POST_VARS as $key=> $val) {
    $fmtResponse= str_replace("<$key>", $val, $fmtResponse);
    $fmtMail= str_replace("<$key>", $val, $fmtMail);
  }
  mail($HTTP_POST_VARS["recipient"], $HTTP_POST_VARS["subject"], $fmtMail);
  echo $fmtResponse;
?>


php::bar PHP Wiki   -   Listenarchive