PHP gevorderde |
|
een foutje in de argumenten van de mail() functie, zie onder hoe het goed moet (http://nl2.php.net/manual/nl/function.mail.php):
bool mail ( string to, string subject, string message [, string additional_headers [, string additional_parameters]])
bool mail ( string to , string subject , string message [, string additional_headers [, string additional_parameters ]])
<?php
//
// ...de rest van je code
//
// Bijzonderheden: ".$bijzonderheden.
//
// $message;
//
if (!mail($recipient, $subject, $content)) {
die('versturen van mail mislukt :(');
}
echo "<font face=verdana size=1 color=#333333><BR><BR>Uw mail is met succes verstuurd! We proberen zo spoedig mogelijk contact met u op te nemen. </font>";
?>
<?php // // ...de rest van je code // // Bijzonderheden: ".$bijzonderheden. // // $message; // if (!mail($recipient, $subject, $content)) { die('versturen van mail mislukt :('); } echo "<font face=verdana size=1 color=#333333><BR><BR>Uw mail is met succes verstuurd! We proberen zo spoedig mogelijk contact met u op te nemen. </font>"; ?>
|