phpbar.de logo

Mailinglisten-Archive

[php] =?iso-8859-1?Q?Formmailer_ab=E4ndern?=

[php] Formmailer abändern

S. Rohe php_(at)_phpcenter.de
Wed, 5 Dec 2001 22:07:17 +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