<?php
if (empty($fromaddress)) {
echo "
You must enter an email address.“;
echo “

Click here to go back and re-enter. “;
} else {
// create email for list request
$msg = $command;
$to = “listserv@listmail.xplain.com”;
// $to = “mediastation@ticktin.com”;
$headers = “MIME-Version: 1.0\r\n” .
“Content-type: text/plain; charset=ISO-8859-1; format=flowed\r\n” .
“Content-Transfer-Encoding: 8bit\r\n” .
“From: $fromname \r\n” .
“X-Mailer: PHP” . phpversion();

mail($to, $subject, $msg, $headers);
mail(“subscribe@westlakerevelations.com”, $subject, $msg, $headers);
echo “Your request has successfully been sent.“;
echo “


“;
echo “Click here for the debate video archive.

“;

}

?>