I don't know what the issue is with my code here. When the form data from page 1 is submited to page 2, all the correct information from page 1 shows up on page2 but it doesn't email. Any help is greatly appreciated! I have also attached both page 1 and page 2. Here's what I have on page 2:
echo "<p><b>".$_POST["First_Name"]."</b>, here is your configured Canyon Bay!</p>";
echo "<p>We have sent this info to your email address at: <b>".$_POST["EmailFrom"]."</b>.</p>";
echo "<p>You configured a <strong>Canyon Bay 2475</strong></p>";
//Start Engine Type Output Arrays
//E-Tech Engine Array
$engines_array = array("12946" => "E 150DPXSC...$",
"14348" => "E 175DPXSC...$",
"15558" => "E 200DPXSC...$",
"16914" => "E 200DHXSC...$",
"17276" => "E 225DPXSC...$",
"18655" => "E 250DPXSC...$",
"12583" => "150XL OptiMax...$",
"14616" => "175XL OptiMax...$",
"16016" => "200XL OptiMax...$",
"17146" => "225 XL OptiMax...$",
"19094" => "225 Pro XS XL OptiMax...$",
"20438" => "250 Pro XS XL OptiMax...$",
"14905" => "F150TXR...$",
"19813" => "F200TXR...$",
"21407" => "F225TXR...$",
"21866" => "F250TXR...$",);
$engine_value = $_POST['Engine'];
$Eng = $engines_array[$engine_value];
//Call Engine Output
echo "Engine Type: " . $engines_array[$engine_value];
echo "<b>".$_POST["Engine"]."</b>.";
//Engine Rigging Array
$riggings_array = array("1117" => "E-Tech Std Pre-Rig ",
"1848" => "E-Tech I-Command Rigging...$",
"2513" => "E-Tech I-Command Rigging Dlx...$",
"1200" => "Mercury Std Pre-Rig...$",
"1800" => "Mercury Smartcraft Rigging...$",
"2300" => "Mercury Smartcraft Rigging Dlx...$",
"1205" => "Yamaha Std Pre-Rig...$",
"1805" => "Yamaha Std Digital Rigging...$",
"2305" => "Yamaha Digital Rigging Dlx...$",);
$rigging_value = $_POST['Rigging'];
$Rig = $riggings_array[$rigging_value];
//Call Rigging Output
echo "<p>Rigging Option: " . $riggings_array[$rigging_value];
echo "<b>".$_POST["Rigging"]."</b>.";
//Console Array
$consoles_array = array("0" => "Standard Console",
"0" => "Elevated Console...$",
"0" => "Elevated Console w/ Porta Potty...$",
"0" => "Elevated Console w/ Electric Head...$",
"0" => "Large Console w/ Storage Compartment...$",
"0" => "Large Console w/ Porta Potty...$",
"0" => "Large Console w/ Electric Head...$",);
$console_value = $_POST['Console'];
$Con = $consoles_array[$console_value];
//Call Console Output
echo "<p>Console Option: " . $consoles_array[$console_value];
echo "<b>".$_POST["Console"]."</b>.";
//start building the mail string
$msg = "<p><strong>Name:</strong> ".$_POST["First_Name"]."</p>";
$msg .= "<p><strong>E-Mail:</strong> ".$_POST["EmailFrom"]."</p>";
$msg .= "<p><strong>Engine Type: </strong>$Eng ".$_POST["Engine"]."</p>";
$msg .= "<p><strong>Rigging Option: </strong>$Rig ".$_POST["Rigging"]."</p>";
$msg .= "<p><strong>Console Option: </strong>$Con ".$_POST["Console"]."</p>";
//set up the mail
$recipient = "danny@swiftda.com";
$subject = "Canyon Bay Configuration";
$mailheaders .= "From: ".$_POST["EmailFrom"]." \n";
$mailheaders .= "Reply-To: ".$_POST["danny@swiftda.com"];
//send the mail
mail($recipient, $subject, $msg, $mailheaders);