Ask
Team PVL a question! Just fill out the fields below and submit your information.
";
echo "
All fields of this form are required.
";
}
if ($Name == "")
{
echo "
Your Name
";
}
else
{
echo "
";
}
if ($Email == "")
{
echo "
Your Email
";
}
else
{
echo "
";
}
if ($Comments == "")
{
echo "
Question
";
}
else
{
echo "
";
}
if (($Name == "") || ($Email == "") || ($Comments == ""))
{
echo "
";
echo "
";
echo "";
}
else
{
$subject = "Website Form Mail from: $Name";
$message = "Name: $Name\nEmail: $Email\nComments: $Comments\n";
$extra = "Reply-To: $Email\r\n";
mail ("teampvl@pvldirect.com", $subject, $message, $extra);
echo "
Thanks for your comments, $Name.
";
echo "
A response will be sent to $Email!
";
}
?>