Tak wygląda cały plik
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "xxx";
$email_subject = "Kontakt";
function died($error) {
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Wróć i popraw błędy.<br /><br />";
}
// validation expected data exists
if(!isset($_POST['first_name']) ||
!isset($_POST['email']) ||
!isset($_POST['comments'])) {
died('Formularz wypełniony niepoprawnie.');
}
$first_name = $_POST['first_name']; // required
$email_from = $_POST['email']; // required
$comments = $_POST['comments']; // required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
$error_message .= 'Niepoprawny adres email.<br />';
}
$string_exp = "/^[A-Za-z .'-]+/";
$error_message .= 'Niepoprawne Imię i Nazwisko.<br />';
}
$error_message .= 'Wiadomość jest za krótka.<br />';
}
if(strlen($error_message) > 0
) {
died($error_message);
}
$email_message = "Nowa wiadomość, informacje poniżej.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
}
$email_message .= "Imię i Nazwisko: ".clean_string($first_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n\n\n";
$email_message .= "".clean_string($comments)."\n";
// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
@mail($email_to, $email_subject, $email_message, $headers);
?>
<!-- include your own success html here -->
Wiadomość została wysłana, nastąpi przekierowanie na stronę główną.
<?php
}
?>