Im getting an error message as follows:
Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for tez@mindseyemidlands.co.uk in C:\Program Files\Apache Group\Apache2\htdocs\titlehelp.php on line 16
Something went wrong try again or contact the system administrator.
I was wondering how to resolve this. Here is my code for info:
<?php
// If you wished, you could also save this information to a database
$FirstName = $_POST['LastName'];
$LastName = $_POST['FirstName'];
$Email = $_POST['Email'];
$Enquiry = $_POST['Enquiry'];
$formsent = mail('tez@mindseyemidlands.co.uk', 'An Enquiry from Minds Eye website', "Enquiry from: $LastName $FirstName\r\nYear: $Email\r\nThe enquiry is: $Enquiry", "From: $Email\r\nBounce-to: tezread@hotmail.com");
if ($formsent) {
echo "<P>The enquiry you made has been sent to Minds Eye.</P>";
}
else {echo "<P>Something went wrong try again or contact the system administrator.</P>";
}
?>
</body>
</html>