PHP ver gevorderde |
|
ik heb de volgende code:
<form method="post"><input type="submit" name="mail" value="mail"></form>
<?php
if(isset($_POST['mail'])){
$to = "molleparty@hotmail.com";
$titl = "BlahBlahhh";
$bericht = "<br /><br />lol<br /><br />";
$headrs = " MIME-Version: 1.0 \n ";
$headrs .= " Content-type: text/html; charset=iso-8859-1 \n ";
mail($to, $titl, $bericht, $headrs);
echo "Verzonden";
}
?>
<form method="post"><input type="submit" name="mail" value="mail"></form> <?php if(isset($_POST['mail'])){ $to = "molleparty@hotmail.com"; $titl = "BlahBlahhh"; $bericht = "<br /><br />lol<br /><br />"; $headrs = " MIME-Version: 1.0 \n "; $headrs .= " Content-type: text/html; charset=iso-8859-1 \n "; mail($to, $titl, $bericht, $headrs); } ?>
maar als ik de pagina via awardspace up, krijg ik geen mail aan, maar die echo komt wel op de pagina. weet iemand wat er verkeert kan zijn? of kan je via headers ook kiezen van welk e-mail adres het word verzonden? dan vermoed ik dat mijn probleem is opgelost.
|