Hi,
I have a very basic cont form which only works when using Firfox.
I have tested it with Chrome, Safari and Android but I don’t receive an email from any of these. Not sure what’s going on here.
<?php
$name = $_POST['name'];
$email = $_POST['email'];
$phone = $_POST['phone'];
$call = $_POST['call'];
$type = $_POST['type'];
$message = $_POST['message'];
$formcontent=" From: $name \n
Phone: $phone \n
Type: $type \n
Message: $message";
$recipient = "[email protected]";
$subject = "Book_a_Course Form";
$mailheader = "From: $email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Your message has been sent successfully. Thank You!" . " -" . "<a href='https://nobullab.com.au/' style='text-decoration:none;color:#ff0099;'> Return Home</a>";
?>
Help …