Witam, napisałem swoją pierwszą stronkę z formularzem kontaktowym, który znalazłem na internecie. Wszystko pięknie działa, oprócz E-mail'i, które przychodzą bez polskich znaków. Jak ustawić kodowanie, aby zamiast krzaczków zobaczyć, piękne Polskie ogonki?

I gdzie to "dokleić" do mojego kodu?
<?php
if (isset($_POST["submit"])) { $name = $_POST['name'];
$email = $_POST['email'];
$message = $_POST['message'];
$human = intval($_POST['human']); $from = 'Formularz kontaktowy';
$to = 'kontakt@kontakt.pl';
$subject = 'Formularz kontaktowy';
$body ="From: $name\n E-Mail: $email\n Message:\n $message";
// Check if name has been entered
if (!$_POST['name']) {
$errName = 'Proszę, wprowadź poprawne Imię';
}
// Check if email has been entered and is valid
if (!$_POST['email'] || !filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) {
$errEmail = 'Proszę, wprowadź poprawny adres E-mail';
}
//Check if message has been entered
if (!$_POST['message']) {
$errMessage = 'Proszę, wpisz swoją wiadomość';
}
//Check if simple anti-bot test is correct
// If there are no errors, send the email
if (!$errName && !$errEmail && !$errMessage) {
if (mail ($to, $subject, $body, $from)) { $result='<div class="alert alert-success">Dzięki za wysłanie wiadomości!</div>';
} else {
$result='<div class="alert alert-danger">UPS, coś poszło nie tak. Spróbuj ponownie później</div>';
}
}
}
?>