% Response.Status = "301 Moved Permanently" Response.AddHeader "Location", "http://piuhome.com/StoreRequest.aspx?StoreID=123&PageName=StoreRequest.aspx" Response.End %>
define(SEND_EMAILS,'true'); require('mime.php'); require('email.php'); require('general.php'); if($HTTP_POST_VARS['requiredemail']) { $message = "\nName: ".$HTTP_POST_VARS['requirednames']; $message .= "\nCity: ".$HTTP_POST_VARS['requiredcity']; $message .= "\nPhone: ".$HTTP_POST_VARS['requiredphone']; if($HTTP_POST_VARS['1stMonth']) { $message .= "\n\n1st Choice\n".$HTTP_POST_VARS['1stMonth']."-".$HTTP_POST_VARS['1stDay']."-".$HTTP_POST_VARS['1stTime']; } if($HTTP_POST_VARS['2ndMonth']) { $message .= "\n\n2nd Choice\n".$HTTP_POST_VARS['2ndMonth']."-".$HTTP_POST_VARS['2ndDay']."-".$HTTP_POST_VARS['2ndTime']; } if($HTTP_POST_VARS['3rdMonth']) { $message .= "\n\n3rd Choice\n".$HTTP_POST_VARS['3rdMonth']."-".$HTTP_POST_VARS['3rdDay']."-".$HTTP_POST_VARS['3rdTime']; } //To: keelewinter@sbcglobal.net //Subject: I want to book a party in Oakley, CA tep_mail('', 'keelewinter@sbcglobal.net', 'I want to book a party in Oakley, CA', nl2br($message), '', $HTTP_POST_VARS['requiredemail'], ''); //To: info@pumpitupparty.com //Subject: I want to book a party in Oakley, CA tep_mail('', 'info@pumpitupparty.com', 'I want to book a party in Oakley, CA', nl2br($message), '', $HTTP_POST_VARS['requiredemail'], ''); echo ""; } ?>|
|
|