The following email code is sending the values but is not sending all the values from the form.
I tried to just insert the values ($name $subject) on that line but on the email it will only post two values.
Code:
$subject = $_POST["subject"];
$message = $_POST["message"];
$name = $_POST["name"];
$from = $_POST["from"];
mail('xxxx@hotmail.co.uk', 'My Subject', $message, $from);
Comment