Hi, 
I have been encountering problems with my web page which is supposed to send email, and wondered if anybody can help find error.
Initially I had all codes in one page and on click of Submit it would send email.
But then I wanted to give a user an opportunity to go back and edit the entries if incorrect before submitting. I separted the codes into two pages.
On the second page when Submit button is clicked it should send email. But it is not working.
My code in the second page is following. Can anybody help please:
	
							
						
					I have been encountering problems with my web page which is supposed to send email, and wondered if anybody can help find error.
Initially I had all codes in one page and on click of Submit it would send email.
But then I wanted to give a user an opportunity to go back and edit the entries if incorrect before submitting. I separted the codes into two pages.
On the second page when Submit button is clicked it should send email. But it is not working.
My code in the second page is following. Can anybody help please:
Code:
	<style type="text/css">
<!--
.style1 {color: #FF0000}
-->
</style>
<? 
 if (!isset($Submit)) 
 ?>
<table width=570 border=0 align=center cellpadding="0" cellspacing="0" bordercolor="#eaeaea"> 
  <form action="?do=river-ride_pay" method="post" enctype="multipart/form-data" name="form1" id="form1" /> <tr> 
    <td bgcolor="#eaeaea" width="5"></td> 
    <td bgcolor="#eaeaea"><p><b>YOUR PROFILE </b></p></td> 
    <td bgcolor="#eaeaea" width="5"></td> 
  </tr> 
  <tr>  
  <tr> 
    <td width="5" background="http://crca.caloosahatchee.org/img/tablebgrwr.jpg"></td> 
    <td> <p><b>You have entered the following information </b>(The information has been sent to your email address as well for your records)<strong>:</strong><br> 
        <br> 
        <?php echo "
				
						<b>Name:</b> ".stripslashes($first)." ".stripslashes($last)."<br>
						<b>E-mail:</b> <a href=\"mailto:$email\">$email</a><br>
						<b>Phone (day):</b> $home_phone<br>
						<b>Phone (evening):</b> $mobile\n<br>
						<b>Address:</b> $address, $city, $state $zip<br>
						<b>City:</b> $city <br>
						<b>State:</b> $state <br>
						<b>Zip:</b> $zip <br>
						<b>Fax:</b> $fax <br>
						<b>Emergency Contact Name: </b> $emerg_contact<br>
						<b>Emergency Phone Number: </b> $emerg_phone<br>
						<b>Shirt Size: </b> $shirt<br>
						<b>Amount:</b> $amount_d<br>
						<b>Miles: </b> $miles<br>
						<b>CRCA Membership: </b> $crca_mem<br> "; ?> 
      <p>Please check if the information you have provided is correct, if not <a href='?do=river-ride&first=<?php echo"$first"; ?>&last=<?php echo"$last"; ?>&email=<?php echo"$email"; ?>&home_phone=<?php echo"$home_phone"; ?>&mobile=<?php echo"$mobile"; ?>&address=<?php echo"$address"; ?>&city=<?php echo"$city"; ?>&state=<?php echo"$state"; ?>&fax=<?php echo"$fax"; ?>&zip=<?php echo"$zip"; ?>&state=<?php echo"$state"; ?>&emerg_contact=<?php echo"$emerg_contact"; ?>&emerg_phone=<?php echo"$emerg_phone"; ?>&shirt=<?php echo"$shirt"; ?>&amount=<?php echo"$amount"; ?>&miles=<?php echo"$miles"; ?>&crca_mem=<?php echo"$crca_mem"; ?>'>Go Back and Correct</a>!</p> 
      <p align='center'> 
        <input type="submit" name="Submit" value="Submit" class="normal" /> 
        </form> </td> 
    <td width="5" background="http://crca.caloosahatchee.org/img/tablebgrwl.jpg"></td> 
  </tr> 
  <tr> 
    <td><img src="http://crca.caloosahatchee.org/img/tablebgl.jpg"></td> 
    <td background="http://crca.caloosahatchee.org/img/tablebgrb.jpg"></td> 
    <td><img src="http://crca.caloosahatchee.org/img/tablebgr.jpg"></td> 
  </tr> 
</table> 
<?php
		
		
			$date=date("Y-m-d");
			$id=date("Y-m-d H:i:s");
				
			$id_array=explode(" ", $id);  
			$id1=explode("-", $id_array[0]);
			$id2=explode(":", $id_array[1]);
			$id=$id1[0].$id1[1].$id1[2].$id2[0].$id2[1].$id2[2];
			
	$reg1="insert into donors values ('$id','$date','$last','$first','$email','$address','$city','$state','$zip','$home_phone','$mobile','$fax','emerg_contact','emerg_phone','shirt','miles','crca_mem','$amount_d')"; 
		
		$query1=mysql_query($reg1);
			
		if (!$query1) 
		{
			echo "Can't register in donors";
			include("http://crca.caloosahatchee.org/includes/close.php");
			exit;
		}
	
		// sending confirmation messages
			if ($email<>NULL) 
			{
				$header = "Content-Type: text/html; charset=iso-8859-1\r\n";
				
				$message = "Dear $first $last, \n\n";
				$message .= "Thank you for your great interest in participating in our 13th Annual Caloosahatchee River Ride Event! \n\n";
				$message .= "Following is your profile information you submitted to us:\n\n";
				$message .= "Email: $email\n";
				$message .= "Phone (day): $home_phone\n";
				$message .= "Phone (evening): $mobile\n";
				$message .= "Address: $address\n";
				$message .= "City: $city\n";
				$message .= "State: $state\n";
				$message .= "Zip Code: $zip\n";
				$message .= "Fax: $fax\n";
				$message .= "Emergency Contact Name: $emerg_contact\n";
				$message .= "Emergency Phone Number: $emerg_phone\n";
				$message .= "Shirt Size: $shirt\n";
				$message .= "Amount: $amount_d\n";
				$message .= "Miles: $miles\n";
				$message .= "CRCA Membership: $crca_mem\n\n";
				$message .= "If you have not yet paid your registration fee of $25.00, please do so now at https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8215269	 \n\n";
				$message .= "As soon as we receive your payment we will confirm your registration to be complete. Thank you!\n\n";
				$message .= "Sincerely,\n";
				$message .= "CRCA Administration \n\n";
				//$message .= "P. S.<br>";
				//$message .= "Your payment amount: $ $amount_d<br>";
				//$message .= "Date:".date("Y-m-d")."<br>";
				
				$from = "From: riverride09@caloosahatchee.org\n";
				$reply = "Reply-To: riverride09@caloosahatchee.org";
				
				$header .= $from . $reply;
				
				$sentmail = mail($email, "River Ride Registration Confirmation", $message, $header);
			}
			
			if ($sentmail) 
			{
				//$message = "*** THIS IS A POSSIBLE PAYMENT CONFIRMATION FOR RIVER RIDE EVENT *** \n\n";
				$message = "River Ride Registration Confirmation message sent by $first $last on ".date("Y-m-d")."\n\n";
				$message .= "Other Details are:\n";
				$message .= "Email: $email\n";
				$message .= "Phone (day): $home_phone\n";
				$message .= "Phone (evening): $mobile\n";
				$message .= "Address: $address\n";
				$message .= "City: $city\n";
				$message .= "State: $state\n";
				$message .= "Zip Code: $zip\n";
				$message .= "Fax: $fax\n";
				$message .= "Emergency Contact Name: $emerg_contact\n";
				$message .= "Emergency Phone Number: $emerg_phone\n";
				$message .= "Shirt Size: $shirt\n";
				$message .= "Amount: $amount_d\n";
				$message .= "Miles: $miles\n";
				$message .= "CRCA Membership: $crca_mem\n\n";
				$message .= "Sincerely,\n";
				$message .= "CRCA Administration\n";
				$from = "From: riverride09@caloosahatchee.org\n";
				$reply = "Reply-To: riverride09@caloosahatchee.org";
				$header = $from . $reply;
				$email2 = "riverride09@caloosahatchee.org";
				mail($email2, "River Ride Registration Confirmation", $message, $header);
			}
	?>
Comment