I have website with a form on it that links to PHP script.
Up until now the mail sends from the server it is located on but I need to change this for it to go from a specific IP . Not sure where or what the comand should go.
Please help
My current code is:
<?php mail("[email protected]","Enquiry from website","Enquiry website: Name: " . $_POST['name'] . " Surname: " . $_POST['surname'] . " email: " . $_POST['email'] . " telephone: " . $_POST['telephone'] . " Enquiry: " . $_POST['comments'] . " "); include("thanks.html"); ?>