Contact

'; echo ''; echo 'Please check the input values and try again!'; echo '
'; } else { $body = "Message from " . htmlentities($name) . ' <' . htmlentities($email) . ">\r\n" . "\r\n" . htmlentities($message); $body = wordwrap($body, 70, "\r\n"); $header = 'From: Contact Form ' . "\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 contact@webmediathek.de!
'; echo '
'; } else { echo '
'; echo ''; echo 'Message sent successfully!'; echo '
'; } } } ?>