session_start();
require_once('../Connections/connection.php');
include_once('../include/header_functions.php');
show_header("Testing Controls: Email");
echo "
Testing Controls: Email
";
$sql = "SELECT * FROM tbl_testing_email";
$result = mysql_query($sql, $connection)
or die("could not query tbl_testing_email
" . mysql_error());
$row = mysql_fetch_array($result);
$y_n_testing = $row['y_n_testing'];
$testing_email_to = $row['testing_email_to'];
?>
When the system is in testing mode, all emails will go to the "testing to" address.
When the system is in live mode, all emails will go to their regular recipients.
Return to Main Menu