Hi folks!
This is the PHP form I use, Id like to alter the script so the subject shows up in the subject column of my inbox… Anyone know what I would have to change?
Cheers!
<?php
$TextVariable = ‘&results=’;
$response = ‘Email Sent. Thank You…’;
echo $TextVariable;
echo $response;
mail ("email@hubl.co.uk", “Email from HUBL contact form recieved!”, "
HUBL Email submission:
Name : $Name
Email : $Email
Subject : $Subject
Comment:
$Comment
Sent From IP address : $REMOTE_ADDR
");
?>