OK, we are getting close....
First you need to force people to always browse the site using http://www.bandofhonor.com and not just http://bandofhonor.com (missing the www.)
Since they function as separate sites from a Session perspective and we always return them to the www. version. The easiest way to do that is to add or update a rule to your .htaccess file (google will help you find what you need to add)
Once that is done, then the next issue is that we don't have the email address of the person to send the email to. So we will have to update the code on the success page to fix that.
1) update the code on the top of the page to pass it forward through the redirect:
<?php
if (isset($_REQUEST['x_response_code'])) {
die('<script>document.location.href="http://www.bandofhonor.com/checkout_success.php?email='.$_POST['x_email'].'";</script>');
}
?>
2) update the email address setting on the success page to send to the email address you are now passing through the url. That would be done by updating this line:
$RecipArray[$CurIndex ][] = "".(WA_getSavedFormValue("CheckoutWizard_Sharp_Default","Email_Address")) ."";
to this:
$RecipArray[$CurIndex ][] = "".$_GET['email'] ."";