Hi,
My first post :-)
Anyway - I am very new to the PHP world and just managed to get a script to work with no real problems However the email address given to both myself and the customer is that of my ISP !!!
Is there a way to add a line in to give me there address as a reply, and a line to give my address for then to reply to?
I hope the made sense.
Script below:
Many Thanks
Neil
<?
PRINT "<CENTER>";
PRINT "Thank you, $FullName for your interest in our product.";
PRINT "<BR><BR>";
PRINT "We will send an information pack to: $Address, today. If in the mean time you have any questions please call us on the number below ";
PRINT "<BR><BR>";
PRINT "</CENTER>";
mail("$Email", "Your request for information", "$FullName
Thank you for your interest regarding our Product!
An information pack is on its way to you.");
mail("myemail@mycompany.co.uk",
"Enquiry from $FullName.",
"$FullName requested for information about a product.
The subject was: $Subject
There comments or questions are: $Comment
The email address is: $Email
The Postal Address is:
$Address ");
?>