Im needing help here please
You see where it says Nobody <[email protected] and where it says No Subject well how do i get it so it shows the persons email address like showing in the email beside email address. Also for Subject id like it so say Order instead of No Subject
PHP Code:<?PHP
$sendto = "[email protected]";
$from = "$email";
$message = "DVD Order List:
First Name: $firstname
Last Name: $lastname
Address Line One: $addressone
Address Line Two: $addresstwo
Post Code: $postcode
City: $city
Country: $country
Telephone Number: $telephone
Email Address: $email
--------------------------------------------------------------------------------------------
DVD List:
$dvd";
mail($sendto, $subject, $message);
echo "Thanks for the order we will contact you soon";
?>




Reply With Quote