Good evening, for my website I am using a mail form. Apparently it is saying that the message was sent, eve though nothing was filled out. I also don´t get an e-mail then. What do I have to include in the code, so that it is checked before sending, that the email, subject and message is filled out? Thank you for you help!
<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail("***.****@gmail.com", $subject,
$message, "From:" . $email);
echo "Thank you for using our mail form. We will reply as soon as possible.";
}
else
{
echo "<form method='post' action='mailform.php'>
Email: <br> <input name='email' type='text'><br>
Subject: <br> <input name='subject' type='text'><br>
Message:<br>
<textarea name='message' rows='15' cols='40'>
</textarea><br>
<input type='submit'>
</form>";
}
?>