html5 — контактная форма не работает (Materialise + PHP)

Я пытался отправлять сообщения из моей контактной формы с materializecss и PHP. Но по каким-то странным причинам я не смог этого сделать.

Мой код PHP:

<?php
// Check for empty fields
if(empty($_POST['name'])      ||
empty($_POST['email'])     ||
empty($_POST['message'])   ||
!filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
{
echo "No arguments Provided!";
return false;
}

$name = strip_tags(htmlspecialchars($_POST['name']));
$email_address = strip_tags(htmlspecialchars($_POST['email']));
$message = strip_tags(htmlspecialchars($_POST['message']));

$to = '[email protected]';
$email_subject = "Website Contact Form:  $name";
$email_body = "You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email_address\n\nPhone: $phone\n\nMessage:\n$message";
$headers = "From: [email protected]\n";
$headers .= "Reply-To: $email_address";
mail($to,$email_subject,$email_body,$headers);
return true;
?>

Моя материализованная контактная форма

<div class="container">
<div class="row">
<h4>Contact</h4>
<form action="contact_me.php" method="POST" class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix">account_circle</i>
<input id="icon_prefix" type="text" class="validate" name="name">
<label for="icon_prefix">Full Name</label>
</div>
<div class="input-field col s6">
<i class="material-icons prefix">email</i>
<input id="email" type="email" class="validate">
<label for="email" data-error="wrong" data-success="right" name="email">Email</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">message</i>
<textarea id="textarea1" class="materialize-textarea" name="message"></textarea>
<label for="textarea1">Message</label>
</div>
</div>
</form>
</div>
<div class="container center">
<input type="submit" value="Send">
</div>
</div>

Я даже не могу отправить ни одной части сообщения на мой электронный идентификатор.

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]