Join our
PVL Mailing List today! Just fill out the fields below and submit your information.
";
}
if ($Comments == "")
{
$Comments = 'none';
}
else
{
echo "
";
$Comments="";
}
if ($Name == "")
{
echo "
Your Name
";
}
else
{
echo "
";
}
if ($Email == "")
{
echo "
Your Email
";
}
else
{
echo "
";
}
if (($Name == "") || ($Email == "") || ($Comments == ""))
{
echo "
";
echo "
";
echo "";
}
else
{
$subject = "PVL Newsletter Subscription: $Name";
$message = "Name: $Name\nEmail: $Email\n";
$extra = "Reply-To: $Email\r\n";
mail ("newsletter@pvldirect.com", $subject, $message, $extra);
echo "
Thanks for subscribing, $Name.";
echo "
The newsletter will be mailed to $Email!
";
}
?>