I am getting a error on line 1 and line 6 i spaced them out to allow for you to see.
Could tell what is wrong with the following code?
/* Data Variables */
$name = $_POST['Name'];
$email= $_POST['Email'];
$comments = $_POST['Message'];
$phone = $_POST['Phone'];
$signup= $_POST['signup']
$body = <<<EOD
<br><hr><br>
Name: $name <br>
Email: $email <br>
Comments: $comments <br>
Where did you find us : $where <br>
EOD;
$headers = "From: $email
";
$headers .= "Content-type: text/html
";
$success = mail($to, $emailSubject, $body,
$headers);
You are missing a semicolon on line 6
$signup= $_POST['signup'];