Semplice form per inviare mail. Con il controllo sui campi obbligatori.
conf.php3
<?
// Where to send to?
$email = "your@domain.com";
// The subject of the e-mail you get:
$onderwerp = "You've got mail";
// Title of the website
$title = "You can send me a e-mail here";
// Header text
$maintxt = "Send me a e-mail";
// Thank you message
$thankz = "Thank you for sending me a e-mail!";
// Question for her/his name
$name = "What's your name";
// Question for her/his e-mail adress
$emailadress = "What's your e-mail adress";
// Question for her/his message
$saywhat = "What have you got to say";
// Errors:
$noname = "You haven't filled in your name";
$nomail = "You haven't filled in your e-mail adress";
$wrongmail = "You've filled in a wrong e-mail adress";
$nomessage = "You haven't filled in a message";
?>