Kontakt

'; echo ''; echo 'Bitte überprüfen Sie Ihre Eingabe!'; echo '
'; } else { $body = "Message from " . htmlentities($name) . ' <' . htmlentities($email) . ">\r\n" . "\r\n" . htmlentities($message); $body = wordwrap($body, 70, "\r\n"); $header = 'From: Kontaktformular ' . "\r\n" . 'Reply-To: ' . $email . "\r\n" . 'Content-Type: text/html; charset=UTF-8' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); $subject = 'Contact Message From ' . htmlentities($name); $ok = mail($receiver, $subject, $body, $header); if (!$ok) { echo '
'; echo ''; echo 'Mail could not be sent.
Please try again later or use kontakt@webmediathek.de!
'; echo '
'; } else { echo '
'; echo ''; echo 'Nachricht erfolgreich gesendet!'; echo '
'; } } } ?>